Lines Matching refs:xprt

111 	SVCXPRT *xprt;  in main()  local
156 if ((xprt = svcudp_create(sock)) == (SVCXPRT *)NULL) { in main()
198 if ((xprt = svctcp_create(sock, RPCSMALLMSGSIZE, RPCSMALLMSGSIZE)) in main()
250 if (svc_register(xprt, PMAPPROG, PMAPVERS, reg_service, FALSE) == 0) { in main()
292 reg_service(struct svc_req *rqstp, SVCXPRT *xprt) in reg_service() argument
300 fromsin = svc_getcaller(xprt); in reg_service()
310 if (!svc_sendreply(xprt, xdr_void, (caddr_t)0) && debugging) { in reg_service()
319 if (xprt != ltcpxprt && xprt != ludpxprt) { in reg_service()
323 svcerr_noproc(xprt); in reg_service()
326 if (!svc_getargs(xprt, xdr_pmap, (caddr_t)&reg)) { in reg_service()
327 svcerr_decode(xprt); in reg_service()
368 svcerr_systemerr(xprt); in reg_service()
383 if ((!svc_sendreply(xprt, xdr_long, (caddr_t)&ans)) && in reg_service()
394 if (xprt != ltcpxprt && xprt != ludpxprt) { in reg_service()
398 svcerr_noproc(xprt); in reg_service()
401 if (!svc_getargs(xprt, xdr_pmap, (caddr_t)&reg)) { in reg_service()
402 svcerr_decode(xprt); in reg_service()
431 if ((!svc_sendreply(xprt, xdr_long, (caddr_t)&ans)) && in reg_service()
442 if (!svc_getargs(xprt, xdr_pmap, (caddr_t)&reg)) { in reg_service()
443 svcerr_decode(xprt); in reg_service()
451 if ((!svc_sendreply(xprt, xdr_long, (caddr_t)&port)) && in reg_service()
462 if (!svc_getargs(xprt, xdr_void, NULL)) { in reg_service()
463 svcerr_decode(xprt); in reg_service()
466 if (!svc_sendreply(xprt, xdr_pmaplist, (caddr_t)&pmaplist) && in reg_service()
481 callit(rqstp, xprt); in reg_service()
485 svcerr_noproc(xprt); in reg_service()
584 callit(struct svc_req *rqstp, SVCXPRT *xprt) in callit() argument
600 if (!svc_getargs(xprt, xdr_rmtcall_args, (caddr_t)&a)) in callit()
602 if (!check_callit(svc_getcaller(xprt), rqstp->rq_proc, in callit()
638 svc_sendreply(xprt, xdr_rmtcall_result, (caddr_t)&a); in callit()