Home
last modified time | relevance | path

Searched refs:rply (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libc/rpc/
H A Dsvc.c358 struct rpc_msg rply; in svc_sendreply() local
362 rply.rm_direction = REPLY; in svc_sendreply()
363 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svc_sendreply()
364 rply.acpted_rply.ar_verf = xprt->xp_verf; in svc_sendreply()
365 rply.acpted_rply.ar_stat = SUCCESS; in svc_sendreply()
366 rply.acpted_rply.ar_results.where = xdr_location; in svc_sendreply()
367 rply.acpted_rply.ar_results.proc = xdr_results; in svc_sendreply()
368 return (SVC_REPLY(xprt, &rply)); in svc_sendreply()
377 struct rpc_msg rply; in svcerr_noproc() local
381 rply.rm_direction = REPLY; in svcerr_noproc()
[all …]
/freebsd/sys/rpc/
H A Dsvc.c660 svc_sendreply_common(struct svc_req *rqstp, struct rpc_msg *rply, in svc_sendreply_common() argument
673 rply, svc_getrpccaller(rqstp), body); in svc_sendreply_common()
678 ok = SVC_REPLY(xprt, rply, rqstp->rq_addr, body, &rqstp->rq_reply_seq); in svc_sendreply_common()
693 struct rpc_msg rply; in svc_sendreply() local
698 rply.rm_xid = rqstp->rq_xid; in svc_sendreply()
699 rply.rm_direction = REPLY; in svc_sendreply()
700 rply.rm_reply.rp_stat = MSG_ACCEPTED; in svc_sendreply()
701 rply.acpted_rply.ar_verf = rqstp->rq_verf; in svc_sendreply()
702 rply.acpted_rply.ar_stat = SUCCESS; in svc_sendreply()
703 rply.acpted_rply.ar_results.where = NULL; in svc_sendreply()
[all …]