diff options
| author | christos <christos@NetBSD.org> | 1997-07-13 18:16:43 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1997-07-13 18:16:43 +0000 |
| commit | c970a909ded74fb8579c4e045ef688c767b388ef (patch) | |
| tree | 39c84b7ef2c99ea22037d0dcbff27b2a7ba9274d /include | |
| parent | 5fce2becd3a30ac124a42c67196c556b53f50759 (diff) | |
Add missing prototypes for xdr_{accepted,rejected}_reply
Diffstat (limited to 'include')
| -rw-r--r-- | include/rpc/rpc_msg.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/include/rpc/rpc_msg.h b/include/rpc/rpc_msg.h index 224651ef441..1788ee90fe1 100644 --- a/include/rpc/rpc_msg.h +++ b/include/rpc/rpc_msg.h @@ -1,4 +1,4 @@ -/* $NetBSD: rpc_msg.h,v 1.5 1995/04/29 05:28:00 cgd Exp $ */ +/* $NetBSD: rpc_msg.h,v 1.6 1997/07/13 18:16:43 christos Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -184,6 +184,23 @@ extern bool_t xdr_callhdr __P((XDR *, struct rpc_msg *)); */ extern bool_t xdr_replymsg __P((XDR *, struct rpc_msg *)); + +/* + * XDR routine to handle a accepted rpc reply. + * xdr_accepted_reply(xdrs, rej) + * XDR *xdrs; + * struct accepted_reply *rej; + */ +extern bool_t xdr_accepted_reply __P((XDR *, struct accepted_reply *)); + +/* + * XDR routine to handle a rejected rpc reply. + * xdr_rejected_reply(xdrs, rej) + * XDR *xdrs; + * struct rejected_reply *rej; + */ +extern bool_t xdr_rejected_reply __P((XDR *, struct rejected_reply *)); + /* * Fills in the error part of a reply message. * _seterr_reply(msg, error) |
