include/rpc/auth_kerb.h
137
extern int svc_kerb_reg(SVCXPRT *, char *, char *, char *);
include/rpc/svc.h
137
SVCXPRT *rq_xprt; /* associated transport */
include/rpc/svc.h
198
extern bool_t svc_reg(SVCXPRT *, const rpcprog_t, const rpcvers_t,
include/rpc/svc.h
199
void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
222
extern void xprt_register(SVCXPRT *);
include/rpc/svc.h
232
extern void xprt_unregister(SVCXPRT *);
include/rpc/svc.h
263
extern bool_t svc_sendreply(SVCXPRT *, xdrproc_t, void *);
include/rpc/svc.h
264
extern void svcerr_decode(SVCXPRT *);
include/rpc/svc.h
265
extern void svcerr_weakauth(SVCXPRT *);
include/rpc/svc.h
266
extern void svcerr_noproc(SVCXPRT *);
include/rpc/svc.h
267
extern void svcerr_progvers(SVCXPRT *, rpcvers_t, rpcvers_t);
include/rpc/svc.h
268
extern void svcerr_auth(SVCXPRT *, enum auth_stat);
include/rpc/svc.h
269
extern void svcerr_noprog(SVCXPRT *);
include/rpc/svc.h
270
extern void svcerr_systemerr(SVCXPRT *);
include/rpc/svc.h
332
extern int svc_create(void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
348
extern SVCXPRT *svc_tp_create(void (*)(struct svc_req *, SVCXPRT *),
include/rpc/svc.h
363
extern SVCXPRT *svc_tli_create(const int, const struct netconfig *,
include/rpc/svc.h
378
extern SVCXPRT *svc_vc_create(const int, const u_int, const u_int);
include/rpc/svc.h
388
extern SVCXPRT *svcunix_create(int, u_int, u_int, char *);
include/rpc/svc.h
390
extern SVCXPRT *svc_dg_create(const int, const u_int, const u_int);
include/rpc/svc.h
402
extern SVCXPRT *svc_fd_create(const int, const u_int, const u_int);
include/rpc/svc.h
412
extern SVCXPRT *svcunixfd_create(int, u_int, u_int);
include/rpc/svc.h
417
extern SVCXPRT *svc_raw_create(void);
include/rpc/svc.h
422
int svc_dg_enablecache(SVCXPRT *, const u_int);
include/rpc/svc.h
424
int __rpc_get_local_uid(SVCXPRT *_transp, uid_t *_uid);
include/rpc/svc_soc.h
104
extern SVCXPRT *svctcp_create(int, u_int, u_int);
include/rpc/svc_soc.h
111
extern SVCXPRT *svcfd_create(int, u_int, u_int);
include/rpc/svc_soc.h
66
extern bool_t svc_register(SVCXPRT *, u_long, u_long,
include/rpc/svc_soc.h
67
void (*)(struct svc_req *, SVCXPRT *), int);
include/rpc/svc_soc.h
86
extern SVCXPRT *svcraw_create(void);
include/rpc/svc_soc.h
94
extern SVCXPRT *svcudp_create(int);
include/rpc/svc_soc.h
95
extern SVCXPRT *svcudp_bufcreate(int, u_int, u_int);
include/rpc/svc_soc.h
96
extern int svcudp_enablecache(SVCXPRT *, u_long);
lib/libc/rpc/rpc_com.h
85
void __xprt_unregister_unlocked(SVCXPRT *);
lib/libc/rpc/rpc_com.h
87
extern SVCXPRT **__svc_xports;
lib/libc/rpc/rpc_soc.c
196
static SVCXPRT *
lib/libc/rpc/rpc_soc.c
200
SVCXPRT *svc;
lib/libc/rpc/rpc_soc.c
236
SVCXPRT *
lib/libc/rpc/rpc_soc.c
243
SVCXPRT *
lib/libc/rpc/rpc_soc.c
250
SVCXPRT *
lib/libc/rpc/rpc_soc.c
258
SVCXPRT *
lib/libc/rpc/rpc_soc.c
265
SVCXPRT *
lib/libc/rpc/rpc_soc.c
446
SVCXPRT *
lib/libc/rpc/rpc_soc.c
454
SVCXPRT *xprt;
lib/libc/rpc/rpc_soc.c
495
xprt = (SVCXPRT *)svc_tli_create(sock, nconf, &taddr, sendsize, recvsize);
lib/libc/rpc/rpc_soc.c
506
SVCXPRT *
lib/libc/rpc/rpc_soc.c
73
static SVCXPRT *svc_com_create(int, u_int, u_int, char *);
lib/libc/rpc/svc.c
107
__svc_xports = (SVCXPRT **)
lib/libc/rpc/svc.c
108
mem_alloc(FD_SETSIZE * sizeof(SVCXPRT *));
lib/libc/rpc/svc.c
111
memset(__svc_xports, '\0', FD_SETSIZE * sizeof(SVCXPRT *));
lib/libc/rpc/svc.c
122
xprt_unregister(SVCXPRT *xprt)
lib/libc/rpc/svc.c
128
__xprt_unregister_unlocked(SVCXPRT *xprt)
lib/libc/rpc/svc.c
137
__xprt_do_unregister(SVCXPRT *xprt, bool_t dolock)
lib/libc/rpc/svc.c
166
svc_reg(SVCXPRT *xprt, const rpcprog_t prog, const rpcvers_t vers,
lib/libc/rpc/svc.c
167
void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc.c
219
((SVCXPRT *) xprt)->xp_netid = strdup(netid);
lib/libc/rpc/svc.c
227
&((SVCXPRT *) xprt)->xp_ltaddr);
lib/libc/rpc/svc.c
268
svc_register(SVCXPRT *xprt, u_long prog, u_long vers,
lib/libc/rpc/svc.c
269
void (*dispatch)(struct svc_req *, SVCXPRT *), int protocol)
lib/libc/rpc/svc.c
353
svc_sendreply(SVCXPRT *xprt, xdrproc_t xdr_results, void *xdr_location)
lib/libc/rpc/svc.c
372
svcerr_noproc(SVCXPRT *xprt)
lib/libc/rpc/svc.c
389
svcerr_decode(SVCXPRT *xprt)
lib/libc/rpc/svc.c
406
svcerr_systemerr(SVCXPRT *xprt)
lib/libc/rpc/svc.c
423
svcerr_auth(SVCXPRT *xprt, enum auth_stat why)
lib/libc/rpc/svc.c
440
svcerr_weakauth(SVCXPRT *xprt)
lib/libc/rpc/svc.c
452
svcerr_noprog(SVCXPRT *xprt)
lib/libc/rpc/svc.c
469
svcerr_progvers(SVCXPRT *xprt, rpcvers_t low_vers, rpcvers_t high_vers)
lib/libc/rpc/svc.c
535
SVCXPRT *xprt;
lib/libc/rpc/svc.c
81
void (*sc_dispatch)(struct svc_req *, SVCXPRT *);
lib/libc/rpc/svc.c
84
SVCXPRT **__svc_xports;
lib/libc/rpc/svc.c
89
static void __xprt_do_unregister (SVCXPRT *xprt, bool_t dolock);
lib/libc/rpc/svc.c
97
xprt_register(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
100
SVCXPRT *xprt;
lib/libc/rpc/svc_dg.c
120
xprt = mem_alloc(sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
123
memset(xprt, 0, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
155
mem_free(xprt, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
162
svc_dg_stat(SVCXPRT *xprt __unused)
lib/libc/rpc/svc_dg.c
168
svc_dg_recv(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_dg.c
216
svc_dg_reply(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_dg.c
240
svc_dg_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_dg.c
246
svc_dg_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_dg.c
255
svc_dg_destroy(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
271
mem_free(xprt, sizeof (SVCXPRT));
lib/libc/rpc/svc_dg.c
276
svc_dg_control(SVCXPRT *xprt __unused, const u_int rq __unused,
lib/libc/rpc/svc_dg.c
283
svc_dg_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_dg.c
381
svc_dg_enablecache(SVCXPRT *transp, u_int size)
lib/libc/rpc/svc_dg.c
436
cache_set(SVCXPRT *xprt, size_t replylen)
lib/libc/rpc/svc_dg.c
524
cache_get(SVCXPRT *xprt, struct rpc_msg *msg, char **replyp, size_t *replylenp)
lib/libc/rpc/svc_dg.c
71
static void svc_dg_ops(SVCXPRT *);
lib/libc/rpc/svc_dg.c
72
static enum xprt_stat svc_dg_stat(SVCXPRT *);
lib/libc/rpc/svc_dg.c
73
static bool_t svc_dg_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_dg.c
74
static bool_t svc_dg_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_dg.c
75
static bool_t svc_dg_getargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_dg.c
76
static bool_t svc_dg_freeargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_dg.c
77
static void svc_dg_destroy(SVCXPRT *);
lib/libc/rpc/svc_dg.c
78
static bool_t svc_dg_control(SVCXPRT *, const u_int, void *);
lib/libc/rpc/svc_dg.c
79
static int cache_get(SVCXPRT *, struct rpc_msg *, char **, size_t *);
lib/libc/rpc/svc_dg.c
80
static void cache_set(SVCXPRT *, size_t);
lib/libc/rpc/svc_dg.c
81
int svc_dg_enablecache(SVCXPRT *, u_int);
lib/libc/rpc/svc_dg.c
97
SVCXPRT *
lib/libc/rpc/svc_generic.c
140
SVCXPRT *
lib/libc/rpc/svc_generic.c
141
svc_tp_create(void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc_generic.c
146
SVCXPRT *xprt;
lib/libc/rpc/svc_generic.c
180
SVCXPRT *
lib/libc/rpc/svc_generic.c
188
SVCXPRT *xprt = NULL; /* service handle */
lib/libc/rpc/svc_generic.c
59
extern int __svc_vc_setflag(SVCXPRT *, int);
lib/libc/rpc/svc_generic.c
71
svc_create(void (*dispatch)(struct svc_req *, SVCXPRT *),
lib/libc/rpc/svc_generic.c
77
SVCXPRT *xprt; /* Server handle */
lib/libc/rpc/svc_generic.c
82
SVCXPRT *xprt;
lib/libc/rpc/svc_raw.c
111
svc_raw_stat(SVCXPRT *xprt __unused)
lib/libc/rpc/svc_raw.c
118
svc_raw_recv(SVCXPRT *xprt __unused, struct rpc_msg *msg)
lib/libc/rpc/svc_raw.c
142
svc_raw_reply(SVCXPRT *xprt __unused, struct rpc_msg *msg)
lib/libc/rpc/svc_raw.c
167
svc_raw_getargs(SVCXPRT *xprt __unused, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_raw.c
183
svc_raw_freeargs(SVCXPRT *xprt __unused, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_raw.c
203
svc_raw_destroy(SVCXPRT *xprt __unused)
lib/libc/rpc/svc_raw.c
209
svc_raw_control(SVCXPRT *xprt __unused, const u_int rq __unused,
lib/libc/rpc/svc_raw.c
216
svc_raw_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_raw.c
63
SVCXPRT server;
lib/libc/rpc/svc_raw.c
68
static enum xprt_stat svc_raw_stat(SVCXPRT *);
lib/libc/rpc/svc_raw.c
69
static bool_t svc_raw_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_raw.c
70
static bool_t svc_raw_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_raw.c
71
static bool_t svc_raw_getargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_raw.c
72
static bool_t svc_raw_freeargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_raw.c
73
static void svc_raw_destroy(SVCXPRT *);
lib/libc/rpc/svc_raw.c
74
static void svc_raw_ops(SVCXPRT *);
lib/libc/rpc/svc_raw.c
75
static bool_t svc_raw_control(SVCXPRT *, const u_int, void *);
lib/libc/rpc/svc_raw.c
79
SVCXPRT *
lib/libc/rpc/svc_simple.c
126
SVCXPRT *svcxprt;
lib/libc/rpc/svc_simple.c
244
universal(struct svc_req *rqstp, SVCXPRT *transp)
lib/libc/rpc/svc_simple.c
64
static void universal(struct svc_req *, SVCXPRT *);
lib/libc/rpc/svc_simple.c
71
SVCXPRT *p_transp;
lib/libc/rpc/svc_vc.c
121
SVCXPRT *
lib/libc/rpc/svc_vc.c
124
SVCXPRT *xprt = NULL;
lib/libc/rpc/svc_vc.c
141
xprt = mem_alloc(sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
184
SVCXPRT *
lib/libc/rpc/svc_vc.c
189
SVCXPRT *ret;
lib/libc/rpc/svc_vc.c
238
static SVCXPRT *
lib/libc/rpc/svc_vc.c
241
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
248
xprt = mem_alloc(sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
257
mem_free(xprt, sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
279
rendezvous_request(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
287
SVCXPRT *newxprt;
lib/libc/rpc/svc_vc.c
358
rendezvous_stat(SVCXPRT *xprt __unused)
lib/libc/rpc/svc_vc.c
365
svc_vc_destroy(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
374
__svc_vc_dodestroy(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
401
mem_free(xprt, sizeof(SVCXPRT));
lib/libc/rpc/svc_vc.c
406
svc_vc_control(SVCXPRT *xprt __unused, const u_int rq __unused,
lib/libc/rpc/svc_vc.c
413
svc_vc_rendezvous_control(SVCXPRT *xprt, const u_int rq, void *in)
lib/libc/rpc/svc_vc.c
443
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
449
xprt = (SVCXPRT *)xprtp;
lib/libc/rpc/svc_vc.c
503
SVCXPRT *xprt;
lib/libc/rpc/svc_vc.c
508
xprt = (SVCXPRT *)xprtp;
lib/libc/rpc/svc_vc.c
544
svc_vc_stat(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
560
svc_vc_recv(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
588
svc_vc_getargs(SVCXPRT *xprt, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_vc.c
598
svc_vc_freeargs(SVCXPRT *xprt, xdrproc_t xdr_args, void *args_ptr)
lib/libc/rpc/svc_vc.c
612
svc_vc_reply(SVCXPRT *xprt, struct rpc_msg *msg)
lib/libc/rpc/svc_vc.c
632
svc_vc_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
655
svc_vc_rendezvous_ops(SVCXPRT *xprt)
lib/libc/rpc/svc_vc.c
665
(bool_t (*)(SVCXPRT *, xdrproc_t, void *))abort;
lib/libc/rpc/svc_vc.c
667
(bool_t (*)(SVCXPRT *, struct rpc_msg *))abort;
lib/libc/rpc/svc_vc.c
669
(bool_t (*)(SVCXPRT *, xdrproc_t, void *))abort;
lib/libc/rpc/svc_vc.c
683
__rpc_get_local_uid(SVCXPRT *transp, uid_t *uid)
lib/libc/rpc/svc_vc.c
69
static SVCXPRT *makefd_xprt(int, u_int, u_int);
lib/libc/rpc/svc_vc.c
70
static bool_t rendezvous_request(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
71
static enum xprt_stat rendezvous_stat(SVCXPRT *);
lib/libc/rpc/svc_vc.c
710
SVCXPRT *xprt, *least_active;
lib/libc/rpc/svc_vc.c
72
static void svc_vc_destroy(SVCXPRT *);
lib/libc/rpc/svc_vc.c
73
static void __svc_vc_dodestroy (SVCXPRT *);
lib/libc/rpc/svc_vc.c
76
static enum xprt_stat svc_vc_stat(SVCXPRT *);
lib/libc/rpc/svc_vc.c
77
static bool_t svc_vc_recv(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
78
static bool_t svc_vc_getargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_vc.c
79
static bool_t svc_vc_freeargs(SVCXPRT *, xdrproc_t, void *);
lib/libc/rpc/svc_vc.c
80
static bool_t svc_vc_reply(SVCXPRT *, struct rpc_msg *);
lib/libc/rpc/svc_vc.c
81
static void svc_vc_rendezvous_ops(SVCXPRT *);
lib/libc/rpc/svc_vc.c
82
static void svc_vc_ops(SVCXPRT *);
lib/libc/rpc/svc_vc.c
83
static bool_t svc_vc_control(SVCXPRT *xprt, const u_int rq, void *in);
lib/libc/rpc/svc_vc.c
84
static bool_t svc_vc_rendezvous_control(SVCXPRT *xprt, const u_int rq,
libexec/rpc.rquotad/rquotad.c
112
rquota_service(struct svc_req *request, SVCXPRT *transp)
libexec/rpc.rquotad/rquotad.c
134
sendquota(struct svc_req *request, SVCXPRT *transp)
libexec/rpc.rquotad/rquotad.c
36
static void rquota_service(struct svc_req *request, SVCXPRT *transp);
libexec/rpc.rquotad/rquotad.c
37
static void sendquota(struct svc_req *request, SVCXPRT *transp);
libexec/rpc.rquotad/rquotad.c
66
SVCXPRT *transp;
libexec/rpc.rstatd/rstat_proc.c
386
rstat_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rstatd/rstatd.c
55
SVCXPRT *transp;
libexec/rpc.rusersd/extern.h
36
void rusers_service(struct svc_req *, SVCXPRT *);
libexec/rpc.rusersd/rusers_proc.c
252
rusers_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rusersd/rusersd.c
56
SVCXPRT *transp = NULL; /* Keep compiler happy. */
libexec/rpc.rwalld/rwalld.c
160
wallprog_1(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.rwalld/rwalld.c
63
SVCXPRT *transp;
libexec/rpc.sprayd/sprayd.c
129
spray_service(struct svc_req *rqstp, SVCXPRT *transp)
libexec/rpc.sprayd/sprayd.c
43
static void spray_service (struct svc_req *, SVCXPRT *);
libexec/rpc.sprayd/sprayd.c
75
SVCXPRT *transp;
sbin/mountd/mountd.c
182
void mntsrv(struct svc_req *, SVCXPRT *);
sbin/mountd/mountd.c
472
SVCXPRT *transp = NULL;
sbin/mountd/mountd.c
743
mntsrv(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/bootparamd/bootparamd/main.c
44
SVCXPRT *transp;
usr.sbin/keyserv/keyserv.c
112
SVCXPRT *transp;
usr.sbin/keyserv/keyserv.c
571
keyprogram(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/keyserv/keyserv.c
711
root_auth(SVCXPRT *trans, struct svc_req *rqstp)
usr.sbin/keyserv/keyserv.c
73
static int root_auth( SVCXPRT *, struct svc_req * );
usr.sbin/keyserv/keyserv.h
16
extern void crypt_prog_1( struct svc_req *, SVCXPRT * );
usr.sbin/rpc.lockd/lockd.c
278
SVCXPRT *transp = NULL;
usr.sbin/rpc.lockd/lockd.c
82
void nlm_prog_0(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
83
void nlm_prog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
84
void nlm_prog_3(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.lockd/lockd.c
85
void nlm_prog_4(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
51
extern void yppasswdprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
52
extern void master_yppasswdprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.yppasswdd/yppasswdd_main.c
163
SVCXPRT *transp = NULL;
usr.sbin/rpc.yppasswdd/yppasswdd_server.c
712
SVCXPRT *transp;
usr.sbin/rpc.ypupdated/ypupdated_extern.h
31
extern void ypu_prog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.ypupdated/ypupdated_main.c
189
SVCXPRT *transp = NULL;
usr.sbin/rpc.ypxfrd/ypxfrd_extern.h
51
extern void ypxfrd_freebsd_prog_1(struct svc_req *, SVCXPRT *);
usr.sbin/rpc.ypxfrd/ypxfrd_main.c
197
SVCXPRT *transp = NULL;
usr.sbin/rpcbind/check_bound.c
152
mergeaddr(SVCXPRT *xprt, char *netid, char *uaddr, char *saddr)
usr.sbin/rpcbind/pmap_svc.c
161
pmapproc_change(struct svc_req *rqstp __unused, SVCXPRT *xprt, unsigned long op)
usr.sbin/rpcbind/pmap_svc.c
255
pmapproc_getport(struct svc_req *rqstp __unused, SVCXPRT *xprt)
usr.sbin/rpcbind/pmap_svc.c
336
pmapproc_dump(struct svc_req *rqstp __unused, SVCXPRT *xprt)
usr.sbin/rpcbind/pmap_svc.c
55
static bool_t pmapproc_change(struct svc_req *, SVCXPRT *, u_long);
usr.sbin/rpcbind/pmap_svc.c
56
static bool_t pmapproc_getport(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/pmap_svc.c
57
static bool_t pmapproc_dump(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/pmap_svc.c
63
pmap_service(struct svc_req *rqstp, SVCXPRT *xprt)
usr.sbin/rpcbind/rpcb_stat.c
201
SVCXPRT *xprt __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
206
SVCXPRT *transp __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
228
SVCXPRT *transp __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc.c
54
static void *rpcbproc_getaddr_3_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc.c
56
static void *rpcbproc_dump_3_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc.c
64
rpcb_service_3(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpcbind/rpcb_svc.c
76
void *(*local)(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_4.c
261
rpcbproc_getaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_4.c
291
rpcbproc_getversaddr_4_local(void *arg, struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_4.c
320
SVCXPRT *transp, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc_4.c
449
SVCXPRT *xprt __unused, rpcvers_t versnum __unused)
usr.sbin/rpcbind/rpcb_svc_4.c
53
static void *rpcbproc_getaddr_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
56
SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_4.c
58
SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_4.c
60
static void *rpcbproc_dump_4_local(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcb_svc_4.c
68
rpcb_service_4(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/rpcbind/rpcb_svc_4.c
79
void *(*local)(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcb_svc_com.c
100
static SVCXPRT *find_rmtcallxprt_by_fd(int);
usr.sbin/rpcbind/rpcb_svc_com.c
111
static void xprt_set_caller(SVCXPRT *, struct finfo *);
usr.sbin/rpcbind/rpcb_svc_com.c
112
static void send_svcsyserr(SVCXPRT *, struct finfo *);
usr.sbin/rpcbind/rpcb_svc_com.c
113
static void handle_reply(int, SVCXPRT *);
usr.sbin/rpcbind/rpcb_svc_com.c
117
static char *getowner(SVCXPRT *, char *, size_t);
usr.sbin/rpcbind/rpcb_svc_com.c
1172
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcb_svc_com.c
1200
xprt_set_caller(SVCXPRT *xprt, struct finfo *fi)
usr.sbin/rpcbind/rpcb_svc_com.c
1213
send_svcsyserr(SVCXPRT *xprt, struct finfo *fi)
usr.sbin/rpcbind/rpcb_svc_com.c
1223
handle_reply(int fd, SVCXPRT *xprt)
usr.sbin/rpcbind/rpcb_svc_com.c
126
rpcbproc_set_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
1375
getowner(SVCXPRT *transp, char *owner, size_t ownersize)
usr.sbin/rpcbind/rpcb_svc_com.c
214
rpcbproc_unset_com(void *arg, struct svc_req *rqstp __unused, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
309
SVCXPRT *transp, rpcvers_t rpcbversnum, rpcvers_t verstype)
usr.sbin/rpcbind/rpcb_svc_com.c
352
SVCXPRT *transp __unused, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
367
SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
394
SVCXPRT *transp, rpcvers_t rpcbversnum __unused)
usr.sbin/rpcbind/rpcb_svc_com.c
495
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcb_svc_com.c
548
static SVCXPRT *
usr.sbin/rpcbind/rpcb_svc_com.c
601
rpcbproc_callit_com(struct svc_req *rqstp, SVCXPRT *transp,
usr.sbin/rpcbind/rpcb_svc_com.c
72
SVCXPRT *xprt;
usr.sbin/rpcbind/rpcbind.c
234
SVCXPRT *my_xprt;
usr.sbin/rpcbind/rpcbind.c
447
my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr,
usr.sbin/rpcbind/rpcbind.c
495
my_xprt = (SVCXPRT *)svc_tli_create(fd, nconf, &taddr,
usr.sbin/rpcbind/rpcbind.h
100
void *rpcbproc_unset_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
104
void *rpcbproc_getaddr_com(RPCB *, struct svc_req *, SVCXPRT *, rpcvers_t,
usr.sbin/rpcbind/rpcbind.h
106
void *rpcbproc_gettime_com(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcbind.h
109
SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
110
void *rpcbproc_taddr2uaddr_com(void *, struct svc_req *, SVCXPRT *,
usr.sbin/rpcbind/rpcbind.h
113
void rpcbproc_callit_com(struct svc_req *, SVCXPRT *, rpcvers_t,
usr.sbin/rpcbind/rpcbind.h
121
int check_access(SVCXPRT *, rpcproc_t, void *, unsigned int);
usr.sbin/rpcbind/rpcbind.h
122
int check_callit(SVCXPRT *, struct r_rmtcall_args *, int);
usr.sbin/rpcbind/rpcbind.h
127
extern void pmap_service(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
83
char *mergeaddr(SVCXPRT *, char *, char *, char *);
usr.sbin/rpcbind/rpcbind.h
93
void *rpcbproc_getstat(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/rpcbind.h
95
void rpcb_service_3(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
96
void rpcb_service_4(struct svc_req *, SVCXPRT *);
usr.sbin/rpcbind/rpcbind.h
99
void *rpcbproc_set_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
usr.sbin/rpcbind/security.c
229
check_callit(SVCXPRT *xprt, struct r_rmtcall_args *args, int versnum __unused)
usr.sbin/rpcbind/security.c
62
check_access(SVCXPRT *xprt, rpcproc_t proc, void *args, unsigned int rpcbvers)
usr.sbin/ypbind/ypbind.c
152
SVCXPRT *udptransp, *tcptransp;
usr.sbin/ypbind/ypbind.c
155
ypbindproc_null_2_yp(SVCXPRT *transp, void *argp, CLIENT *clnt)
usr.sbin/ypbind/ypbind.c
164
ypbindproc_domain_2_yp(SVCXPRT *transp, domainname *argp, CLIENT *clnt)
usr.sbin/ypbind/ypbind.c
234
ypbindproc_setdom_2_yp(SVCXPRT *transp, ypbind_setdom *argp, CLIENT *clnt)
usr.sbin/ypbind/ypbind.c
281
ypbindprog_2(struct svc_req *rqstp, SVCXPRT *transp)
usr.sbin/ypbind/ypbind.c
95
void *ypbindproc_null_2_yp(SVCXPRT *, void *, CLIENT *);
usr.sbin/ypbind/ypbind.c
96
void *ypbindproc_setdom_2_yp(SVCXPRT *, struct ypbind_setdom *, CLIENT *);
usr.sbin/yppush/yppush_extern.h
44
extern void yppush_xfrrespprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/yppush/yppush_main.c
371
SVCXPRT *xprt;
usr.sbin/ypserv/yp_dnslookup.c
109
SVCXPRT *xprt;
usr.sbin/ypserv/yp_extern.h
104
extern unsigned long svcudp_set_xid(SVCXPRT *, unsigned long);
usr.sbin/ypserv/yp_extern.h
105
extern unsigned long svcudp_get_xid(SVCXPRT *);
usr.sbin/ypserv/yp_main.c
236
SVCXPRT *transp = NULL;
usr.sbin/ypserv/yp_main.c
76
extern void ypprog_1(struct svc_req *, SVCXPRT *);
usr.sbin/ypserv/yp_main.c
77
extern void ypprog_2(struct svc_req *, SVCXPRT *);
usr.sbin/ypserv/yp_svc_udp.c
48
svcudp_get_xid(SVCXPRT *xprt)
usr.sbin/ypserv/yp_svc_udp.c
59
svcudp_set_xid(SVCXPRT *xprt, unsigned long xid)