Home
last modified time | relevance | path

Searched refs:call_msg (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/lib/libc/rpc/
H A Dclnt_raw.c104 struct rpc_msg call_msg; in clnt_raw_create() local
128 call_msg.rm_direction = CALL; in clnt_raw_create()
129 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_raw_create()
131 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_raw_create()
132 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_raw_create()
134 if (! xdr_callhdr(xdrs, &call_msg)) in clnt_raw_create()
H A Dclnt_vc.c197 struct rpc_msg call_msg; in clnt_vc_create() local
294 call_msg.rm_xid = __RPC_GETXID(); in clnt_vc_create()
295 call_msg.rm_direction = CALL; in clnt_vc_create()
296 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_vc_create()
297 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_vc_create()
298 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_vc_create()
305 if (! xdr_callhdr(&(ct->ct_xdrs), &call_msg)) { in clnt_vc_create()
H A Dclnt_dg.c169 struct rpc_msg call_msg; in clnt_dg_create() local
260 call_msg.rm_xid = __RPC_GETXID(); in clnt_dg_create()
261 call_msg.rm_call.cb_prog = program; in clnt_dg_create()
262 call_msg.rm_call.cb_vers = version; in clnt_dg_create()
264 if (! xdr_callhdr(&(cu->cu_outxdrs), &call_msg)) { in clnt_dg_create()
/netbsd-src/usr.sbin/rpcbind/
H A Drpcb_svc_com.c620 struct rpc_msg call_msg; in rpcbproc_callit_com() local
667 call_msg.rm_xid = 0; /* For error checking purposes */ in rpcbproc_callit_com()
777 versnum, &call_msg.rm_xid)) { in rpcbproc_callit_com()
801 *xidp, call_msg.rm_xid); in rpcbproc_callit_com()
803 call_msg.rm_direction = CALL; in rpcbproc_callit_com()
804 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in rpcbproc_callit_com()
805 call_msg.rm_call.cb_prog = a.rmt_prog; in rpcbproc_callit_com()
806 call_msg.rm_call.cb_vers = a.rmt_vers; in rpcbproc_callit_com()
823 if (!xdr_callhdr(&outxdr, &call_msg)) { in rpcbproc_callit_com()
910 if (call_msg.rm_xid != 0) in rpcbproc_callit_com()
[all …]