Lines Matching defs:CLIENT
36 * clnt.h - Client side remote procedure call interface.
137 * Client rpc handle.
139 * Client is responsible for initializing auth, see e.g. auth_none.c.
165 } CLIENT;
191 * client side rpc interface ops
200 * CLIENT *rh;
220 * CLIENT *rh;
228 * CLIENT *rh;
237 * CLIENT *rh;
247 * CLIENT *cl;
282 * CLIENT *rh;
306 * Below are the client handle creation routines for the various
307 * implementations of client side rpc. They can return NULL if a
312 * Generic client creation routine. Supported protocols are those that
314 * CLIENT *
322 extern CLIENT *clnt_create(const char *, const rpcprog_t, const rpcvers_t,
333 * Generic client creation routine. Supported protocols are which belong
336 extern CLIENT *clnt_create_vers(const char *, const rpcprog_t, rpcvers_t *,
350 * Generic client creation routine. It takes a netconfig structure
353 extern CLIENT *clnt_tp_create(const char *, const rpcprog_t,
366 extern CLIENT *clnt_tli_create(const int, const struct netconfig *,
383 extern CLIENT *clnt_vc_create(const int, const struct netbuf *,
398 extern CLIENT *clnt_dg_create(const int, const struct netbuf *,
412 * CLIENT *
417 extern CLIENT *clnt_raw_create (rpcprog_t, rpcvers_t);
439 * Print an English error message, given the client error code
442 extern void clnt_perror (CLIENT *, const char *); /* stderr */
443 extern char *clnt_sperror (CLIENT *, const char *); /* string */