Lines Matching defs:transp
124 SVCXPRT *transp;
126 transp = svctcp_create(RPC_INETDSOCK, 0, 0);
127 if (transp == NULL) {
131 if (!svc_register(transp, YPU_PROG, YPU_VERS, ypupdate_prog,
200 ypupdate_prog(rqstp, transp)
202 SVCXPRT *transp;
213 svc_sendreply(transp, xdr_void, NULL);
228 svcerr_noproc(transp);
245 * addr2netname(namebuf, svc_getcaller(transp));
247 addr2netname(namebuf, transp);
255 svcerr_weakauth(transp);
259 if (!svc_getargs(transp, xdr_ypupdate_args, (caddr_t)&args)) {
260 svcerr_decode(transp);
266 if (!svc_sendreply(transp, xdr_u_int, (const caddr_t)&rslt)) {
269 if (!svc_freeargs(transp, xdr_ypupdate_args, (caddr_t)&args)) {
375 addr2netname(namebuf, transp)
377 SVCXPRT *transp;
383 who = svc_getrpccaller(transp);
386 if ((nconf = getnetconfigent(transp->xp_netid))