home *** CD-ROM | disk | FTP | other *** search
- /*
- rpc.h
-
- RPC utility routines.
-
- Copyright (c) 2000 Dug Song <dugsong@monkey.org>
-
- $Id: rpc.h,v 1.1 2000/05/16 17:31:15 dugsong Exp $
- */
-
- #ifndef RPC_H
- #define RPC_H
-
- struct xid_map {
- u_long xid;
- u_long prog;
- void *data;
- };
-
- int rpc_decode(u_char *buf, int len, struct rpc_msg *msg);
-
- void xid_map_enter(u_long xid, u_long prog, void *data);
-
- struct xid_map *xid_map_find(int xid);
-
- #endif /* RPC_H */
-
-