Lines Matching refs:rply

1108 	struct rpc_msg rply;
1110 rply.rm_direction = REPLY;
1111 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1112 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1113 rply.acpted_rply.ar_stat = SUCCESS;
1114 rply.acpted_rply.ar_results.where = xdr_location;
1115 rply.acpted_rply.ar_results.proc = xdr_results;
1117 return (SVC_REPLY((SVCXPRT *)clone_xprt, &rply));
1131 struct rpc_msg rply;
1133 rply.rm_direction = REPLY;
1134 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1135 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1136 rply.acpted_rply.ar_stat = PROC_UNAVAIL;
1138 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1152 struct rpc_msg rply;
1154 rply.rm_direction = REPLY;
1155 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1156 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1157 rply.acpted_rply.ar_stat = GARBAGE_ARGS;
1159 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1168 struct rpc_msg rply;
1170 rply.rm_direction = REPLY;
1171 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1172 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1173 rply.acpted_rply.ar_stat = SYSTEM_ERR;
1175 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1184 struct rpc_msg rply;
1186 rply.rm_direction = REPLY;
1187 rply.rm_reply.rp_stat = MSG_DENIED;
1188 rply.rjcted_rply.rj_stat = AUTH_ERROR;
1189 rply.rjcted_rply.rj_why = why;
1191 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1209 struct rpc_msg rply;
1211 rply.rm_direction = REPLY;
1212 rply.rm_reply.rp_stat = MSG_DENIED;
1213 rply.rjcted_rply.rj_stat = AUTH_ERROR;
1214 rply.rjcted_rply.rj_why = AUTH_BADCRED;
1216 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1230 struct rpc_msg rply;
1232 rply.rm_direction = REPLY;
1233 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1234 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1235 rply.acpted_rply.ar_stat = PROG_UNAVAIL;
1237 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);
1252 struct rpc_msg rply;
1254 rply.rm_direction = REPLY;
1255 rply.rm_reply.rp_stat = MSG_ACCEPTED;
1256 rply.acpted_rply.ar_verf = clone_xprt->xp_verf;
1257 rply.acpted_rply.ar_stat = PROG_MISMATCH;
1258 rply.acpted_rply.ar_vers.low = low_vers;
1259 rply.acpted_rply.ar_vers.high = high_vers;
1261 SVC_REPLY((SVCXPRT *)clone_xprt, &rply);