2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
29 * from: @(#)rpc_msg.h 1.7 86/07/16 SMI
30 * from: @(#)rpc_msg.h 2.1 88/07/29 4.0 RPCSRC
31 * $NetBSD: rpc_msg.h,v 1.11 2000/06/02 22:57:56 fvdl Exp $
32 * $FreeBSD: src/include/rpc/rpc_msg.h,v 1.15 2003/01/01 18:48:42 schweikh Exp $
33 * $DragonFly: src/include/rpc/rpc_msg.h,v 1.4 2007/12/04 20:59:15 swildner Exp $
38 * rpc message definition
40 * Copyright (C) 1984, Sun Microsystems, Inc.
43 #ifndef _RPC_RPC_MSG_H_
44 #define _RPC_RPC_MSG_H_
46 #define RPC_MSG_VERSION ((u_int32_t) 2)
47 #define RPC_SERVICE_PORT ((u_short) 2048)
50 * Bottom up definition of an rpc message.
51 * NOTE: call and reply use the same overall stuct but
52 * different parts of unions within it.
80 * Reply part of an rpc exchange
84 * Reply to an rpc request that was accepted by the server.
85 * Note: there could be an error even though the request was
88 struct accepted_reply
{
89 struct opaque_auth ar_verf
;
90 enum accept_stat ar_stat
;
100 /* and many other null cases */
102 #define ar_results ru.AR_results
103 #define ar_vers ru.AR_versions
107 * Reply to an rpc request that was rejected by the server.
109 struct rejected_reply
{
110 enum reject_stat rj_stat
;
116 enum auth_stat RJ_why
; /* why authentication did not work */
118 #define rj_vers ru.RJ_versions
119 #define rj_why ru.RJ_why
123 * Body of a reply to an rpc request.
126 enum reply_stat rp_stat
;
128 struct accepted_reply RP_ar
;
129 struct rejected_reply RP_dr
;
131 #define rp_acpt ru.RP_ar
132 #define rp_rjct ru.RP_dr
136 * Body of an rpc request call.
139 rpcvers_t cb_rpcvers
; /* must be equal to two */
143 struct opaque_auth cb_cred
;
144 struct opaque_auth cb_verf
; /* protocol specific - provided by client */
152 enum msg_type rm_direction
;
154 struct call_body RM_cmb
;
155 struct reply_body RM_rmb
;
157 #define rm_call ru.RM_cmb
158 #define rm_reply ru.RM_rmb
160 #define acpted_rply ru.RM_rmb.ru.RP_ar
161 #define rjcted_rply ru.RM_rmb.ru.RP_dr
165 * XDR routine to handle a rpc message.
166 * xdr_callmsg(xdrs, cmsg)
168 * struct rpc_msg *cmsg;
170 extern bool_t
xdr_callmsg(XDR
*, struct rpc_msg
*);
173 * XDR routine to pre-serialize the static part of a rpc message.
174 * xdr_callhdr(xdrs, cmsg)
176 * struct rpc_msg *cmsg;
178 extern bool_t
xdr_callhdr(XDR
*, struct rpc_msg
*);
181 * XDR routine to handle a rpc reply.
182 * xdr_replymsg(xdrs, rmsg)
184 * struct rpc_msg *rmsg;
186 extern bool_t
xdr_replymsg(XDR
*, struct rpc_msg
*);
189 * XDR routine to handle an accepted rpc reply.
190 * xdr_accepted_reply(xdrs, rej)
192 * struct accepted_reply *rej;
194 extern bool_t
xdr_accepted_reply(XDR
*, struct accepted_reply
*);
197 * XDR routine to handle a rejected rpc reply.
198 * xdr_rejected_reply(xdrs, rej)
200 * struct rejected_reply *rej;
202 extern bool_t
xdr_rejected_reply(XDR
*, struct rejected_reply
*);
205 * Fills in the error part of a reply message.
206 * _seterr_reply(msg, error)
207 * struct rpc_msg *msg;
208 * struct rpc_err *error;
210 extern void _seterr_reply(struct rpc_msg
*, struct rpc_err
*);
213 #endif /* !_RPC_RPC_MSG_H_ */