Searched refs:call_msg (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/lib/libc/rpc/ |
| H A D | clnt_raw.c | 92 struct rpc_msg call_msg; in clnt_raw_create() local 115 call_msg.rm_direction = CALL; in clnt_raw_create() 116 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_raw_create() 118 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_raw_create() 119 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_raw_create() 121 if (! xdr_callhdr(xdrs, &call_msg)) in clnt_raw_create()
|
| H A D | clnt_vc.c | 211 struct rpc_msg call_msg; in clnt_vc_create() local 272 call_msg.rm_xid = ((u_int32_t)++disrupt) ^ __RPC_GETXID(&now); in clnt_vc_create() 273 call_msg.rm_direction = CALL; in clnt_vc_create() 274 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_vc_create() 275 call_msg.rm_call.cb_prog = (u_int32_t)prog; in clnt_vc_create() 276 call_msg.rm_call.cb_vers = (u_int32_t)vers; in clnt_vc_create() 283 if (! xdr_callhdr(&(ct->ct_xdrs), &call_msg)) { in clnt_vc_create()
|
| H A D | clnt_dg.c | 211 struct rpc_msg call_msg; in clnt_dg_create() local 260 call_msg.rm_xid = __RPC_GETXID(&now); 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() 265 if (! xdr_callhdr(&cu->cu_outxdrs, &call_msg)) { in clnt_dg_create()
|
| /freebsd-14.2/sys/rpc/ |
| H A D | clnt_bck.c | 127 struct rpc_msg call_msg; in clnt_bck_create() local 155 call_msg.rm_xid = ct->ct_xid; in clnt_bck_create() 156 call_msg.rm_direction = CALL; in clnt_bck_create() 157 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_bck_create() 158 call_msg.rm_call.cb_prog = (uint32_t)prog; in clnt_bck_create() 159 call_msg.rm_call.cb_vers = (uint32_t)vers; in clnt_bck_create() 166 if (!xdr_callhdr(&xdrs, &call_msg)) in clnt_bck_create()
|
| H A D | clnt_vc.c | 141 struct rpc_msg call_msg; in clnt_vc_create() local 231 call_msg.rm_xid = ct->ct_xid; in clnt_vc_create() 232 call_msg.rm_direction = CALL; in clnt_vc_create() 233 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in clnt_vc_create() 234 call_msg.rm_call.cb_prog = (uint32_t)prog; in clnt_vc_create() 235 call_msg.rm_call.cb_vers = (uint32_t)vers; in clnt_vc_create() 242 if (! xdr_callhdr(&xdrs, &call_msg)) { in clnt_vc_create()
|
| H A D | clnt_dg.c | 192 struct rpc_msg call_msg; in clnt_dg_create() local 252 call_msg.rm_xid = atomic_fetchadd_32(&rpc_xid, 1); in clnt_dg_create() 253 call_msg.rm_call.cb_prog = program; in clnt_dg_create() 254 call_msg.rm_call.cb_vers = version; in clnt_dg_create() 256 if (! xdr_callhdr(&xdrs, &call_msg)) { in clnt_dg_create()
|
| /freebsd-14.2/usr.sbin/rpcbind/ |
| H A D | rpcb_svc_com.c | 606 struct rpc_msg call_msg; in rpcbproc_callit_com() local 654 call_msg.rm_xid = 0; /* For error checking purposes */ in rpcbproc_callit_com() 763 versnum, &call_msg.rm_xid)) { in rpcbproc_callit_com() 789 *xidp, call_msg.rm_xid); in rpcbproc_callit_com() 791 call_msg.rm_direction = CALL; in rpcbproc_callit_com() 792 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION; in rpcbproc_callit_com() 793 call_msg.rm_call.cb_prog = a.rmt_prog; in rpcbproc_callit_com() 794 call_msg.rm_call.cb_vers = a.rmt_vers; in rpcbproc_callit_com() 813 if (!xdr_callhdr(&outxdr, &call_msg)) { in rpcbproc_callit_com() 901 if (call_msg.rm_xid != 0) in rpcbproc_callit_com() [all …]
|