clnt_raw.c (f249dbcc7149848de00cd8f4e93fe140dfa3f219) clnt_raw.c (cffc0b5784e3c021ce62c949f9a3859da4764dd5)
1/* $NetBSD: clnt_raw.c,v 1.20 2000/12/10 04:12:03 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 67 unchanged lines hidden (view full) ---

76 u_int mcnt;
77} *clntraw_private;
78
79static enum clnt_stat clnt_raw_call(CLIENT *, rpcproc_t, xdrproc_t, void *,
80 xdrproc_t, void *, struct timeval);
81static void clnt_raw_geterr(CLIENT *, struct rpc_err *);
82static bool_t clnt_raw_freeres(CLIENT *, xdrproc_t, void *);
83static void clnt_raw_abort(CLIENT *);
1/* $NetBSD: clnt_raw.c,v 1.20 2000/12/10 04:12:03 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 67 unchanged lines hidden (view full) ---

76 u_int mcnt;
77} *clntraw_private;
78
79static enum clnt_stat clnt_raw_call(CLIENT *, rpcproc_t, xdrproc_t, void *,
80 xdrproc_t, void *, struct timeval);
81static void clnt_raw_geterr(CLIENT *, struct rpc_err *);
82static bool_t clnt_raw_freeres(CLIENT *, xdrproc_t, void *);
83static void clnt_raw_abort(CLIENT *);
84static bool_t clnt_raw_control(CLIENT *, u_int, char *);
84static bool_t clnt_raw_control(CLIENT *, u_int, void *);
85static void clnt_raw_destroy(CLIENT *);
86static struct clnt_ops *clnt_raw_ops(void);
87
88/*
89 * Create a client handle for memory based rpc.
90 */
91CLIENT *
92clnt_raw_create(prog, vers)

--- 182 unchanged lines hidden (view full) ---

275{
276}
277
278/*ARGSUSED*/
279static bool_t
280clnt_raw_control(cl, ui, str)
281 CLIENT *cl;
282 u_int ui;
85static void clnt_raw_destroy(CLIENT *);
86static struct clnt_ops *clnt_raw_ops(void);
87
88/*
89 * Create a client handle for memory based rpc.
90 */
91CLIENT *
92clnt_raw_create(prog, vers)

--- 182 unchanged lines hidden (view full) ---

275{
276}
277
278/*ARGSUSED*/
279static bool_t
280clnt_raw_control(cl, ui, str)
281 CLIENT *cl;
282 u_int ui;
283 char *str;
283 void *str;
284{
285 return (FALSE);
286}
287
288/*ARGSUSED*/
289static void
290clnt_raw_destroy(cl)
291 CLIENT *cl;

--- 23 unchanged lines hidden ---
284{
285 return (FALSE);
286}
287
288/*ARGSUSED*/
289static void
290clnt_raw_destroy(cl)
291 CLIENT *cl;

--- 23 unchanged lines hidden ---