Lines Matching defs:transp
78 SVCXPRT *transp;
110 transp = svc_dg_create(0, 0, 0);
111 if (transp == NULL) {
115 if (!svc_reg(transp, WALLPROG, WALLVERS, wallprog_1, NULL)) {
149 wallprog_1(struct svc_req *rqstp, SVCXPRT *transp)
160 (void)svc_sendreply(transp, (xdrproc_t)xdr_void, NULL);
171 svcerr_noproc(transp);
175 if (!svc_getargs(transp, xdr_argument, (caddr_t)&argument)) {
176 svcerr_decode(transp);
180 if (result != NULL && !svc_sendreply(transp, xdr_result, result)) {
181 svcerr_systemerr(transp);
183 if (!svc_freeargs(transp, xdr_argument, (caddr_t)&argument)) {