Lines Matching defs:call
90 int32_t rp_direction; /* call direction (0) */
102 int32_t rp_direction; /* call direction (1) */
127 * Call portmap to lookup a port number for a particular rpc program
135 u_int32_t prog; /* call program */
136 u_int32_t vers; /* call version */
137 u_int32_t proto; /* call protocol */
138 u_int32_t port; /* call port (unused) */
183 * Do a remote procedure call (RPC) and wait for its reply.
195 struct krpc_call *call;
278 call = mtod(mhead, struct krpc_call *);
279 mhead->m_len = sizeof(*call);
280 bzero((caddr_t)call, sizeof(*call));
283 call->rp_xid = txdr_unsigned(xid);
284 /* call->rp_direction = 0; */
285 call->rp_rpcvers = txdr_unsigned(2);
286 call->rp_prog = txdr_unsigned(prog);
287 call->rp_vers = txdr_unsigned(vers);
288 call->rp_proc = txdr_unsigned(func);
290 call->rpc_auth.authtype = txdr_unsigned(AUTH_UNIX);
291 call->rpc_auth.authlen = txdr_unsigned(sizeof(struct auth_unix));
293 call->rpc_verf.authtype = 0;
294 call->rpc_verf.authlen = 0;
376 /* Did the call succeed? */