Home | History | Annotate | Download | only in rpc

Lines Matching defs:rply

445 	struct rpc_msg rply; 
449 rply.rm_direction = REPLY;
450 rply.rm_reply.rp_stat = MSG_ACCEPTED;
451 rply.acpted_rply.ar_verf = xprt->xp_verf;
452 rply.acpted_rply.ar_stat = SUCCESS;
453 rply.acpted_rply.ar_results.where = xdr_location;
454 rply.acpted_rply.ar_results.proc = xdr_results;
455 return (SVC_REPLY(xprt, &rply));
464 struct rpc_msg rply;
468 rply.rm_direction = REPLY;
469 rply.rm_reply.rp_stat = MSG_ACCEPTED;
470 rply.acpted_rply.ar_verf = xprt->xp_verf;
471 rply.acpted_rply.ar_stat = PROC_UNAVAIL;
472 SVC_REPLY(xprt, &rply);
481 struct rpc_msg rply;
485 rply.rm_direction = REPLY;
486 rply.rm_reply.rp_stat = MSG_ACCEPTED;
487 rply.acpted_rply.ar_verf = xprt->xp_verf;
488 rply.acpted_rply.ar_stat = GARBAGE_ARGS;
489 SVC_REPLY(xprt, &rply);
498 struct rpc_msg rply;
502 rply.rm_direction = REPLY;
503 rply.rm_reply.rp_stat = MSG_ACCEPTED;
504 rply.acpted_rply.ar_verf = xprt->xp_verf;
505 rply.acpted_rply.ar_stat = SYSTEM_ERR;
506 SVC_REPLY(xprt, &rply);
560 struct rpc_msg rply;
564 rply.rm_direction = REPLY;
565 rply.rm_reply.rp_stat = MSG_DENIED;
566 rply.rjcted_rply.rj_stat = AUTH_ERROR;
567 rply.rjcted_rply.rj_why = why;
568 SVC_REPLY(xprt, &rply);
589 struct rpc_msg rply;
593 rply.rm_direction = REPLY;
594 rply.rm_reply.rp_stat = MSG_ACCEPTED;
595 rply.acpted_rply.ar_verf = xprt->xp_verf;
596 rply.acpted_rply.ar_stat = PROG_UNAVAIL;
597 SVC_REPLY(xprt, &rply);
606 struct rpc_msg rply;
610 rply.rm_direction = REPLY;
611 rply.rm_reply.rp_stat = MSG_ACCEPTED;
612 rply.acpted_rply.ar_verf = xprt->xp_verf;
613 rply.acpted_rply.ar_stat = PROG_MISMATCH;
614 rply.acpted_rply.ar_vers.low = (u_int32_t)low_vers;
615 rply.acpted_rply.ar_vers.high = (u_int32_t)high_vers;
616 SVC_REPLY(xprt, &rply);