Lines Matching defs:client
46 * Client interface to pmap rpc service.
79 remote_pmap_getport(CLIENT *client, struct pmap *parms, u_short *port)
81 if (CLNT_CALL(client, (rpcproc_t)PMAPPROC_GETPORT, (xdrproc_t)xdr_pmap,
84 clnt_geterr(client, &rpc_createerr.cf_error);
87 clnt_geterr(client, &rpc_createerr.cf_error);
89 CLNT_DESTROY(client);
92 static CLIENT *
108 CLIENT *client;
120 client = get_client(address, protocol == IPPROTO_TCP);
121 if (client != NULL)
122 remote_pmap_getport(client, &parms, &port);
125 client = get_client(address, protocol != IPPROTO_TCP);
126 if (client != NULL)
127 remote_pmap_getport(client, &parms, &port);