Home | History | Annotate | Download | only in rpc

Lines Matching defs:clnt

87 	CLIENT *clnt;
96 clnt = clnt_create(hostname, prog, vers_high, nettype);
97 if (clnt == NULL) {
102 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t) xdr_void,
106 return (clnt);
111 clnt_geterr(clnt, &rpcerr);
121 CLNT_CONTROL(clnt, CLSET_VERS, (char *)(void *)&vers_high);
122 rpc_stat = clnt_call(clnt, NULLPROC, (xdrproc_t) xdr_void,
126 return (clnt);
129 clnt_geterr(clnt, &rpcerr);
134 clnt_destroy(clnt);
159 CLIENT *clnt = NULL;
172 while (clnt == NULL) {
181 clnt = clnt_tp_create(hostname, prog, vers, nconf);
182 if (clnt)
215 return (clnt);