Lines Matching refs:servtab
214 static void close_sep(struct servtab *);
217 static int cpmip(const struct servtab *, int);
219 static struct servtab *enter(struct servtab *);
220 static void freeconfig(struct servtab *);
221 static struct servtab *getconfigent(void);
224 static void addchild(struct servtab *, int);
226 static void enable(struct servtab *);
227 static void disable(struct servtab *);
230 static void setup(struct servtab *);
232 static void ipsecsetup(struct servtab *);
234 static void unregisterrpc(register struct servtab *sep);
235 static struct conninfo *search_conn(struct servtab *sep, int ctrl);
236 static int room_conn(struct servtab *sep, struct conninfo *conn);
240 static void resize_conn(struct servtab *sep, int maxperip);
241 static void free_connlist(struct servtab *sep);
248 static void print_service(const char *, const struct servtab *);
285 struct servtab *servtab; variable
331 struct servtab *sep; in main()
619 for (sep = servtab; n && sep; sep = sep->se_next) in main()
919 addchild(struct servtab *sep, pid_t pid) in addchild()
948 struct servtab *sep; in reapchild()
959 for (sep = servtab; sep; sep = sep->se_next) { in reapchild()
987 struct servtab *sep, *new, **sepp; in config()
998 for (sep = servtab; sep; sep = sep->se_next) in config()
1024 for (sep = servtab; sep; sep = sep->se_next) in config()
1168 sepp = &servtab; in config()
1188 unregisterrpc(struct servtab *sep) in unregisterrpc()
1191 struct servtab *sepp; in unregisterrpc()
1210 for (sepp = servtab; sepp; sepp = sepp->se_next) { in unregisterrpc()
1245 struct servtab *sep; in retry()
1248 for (sep = servtab; sep; sep = sep->se_next) in retry()
1254 setup(struct servtab *sep) in setup()
1392 ipsecsetup(struct servtab *sep) in ipsecsetup()
1466 close_sep(struct servtab *sep) in close_sep()
1502 static struct servtab *
1503 enter(struct servtab *cp) in enter()
1505 struct servtab *sep; in enter()
1516 sep->se_next = servtab; in enter()
1517 servtab = sep; in enter()
1523 enable(struct servtab *sep) in enable()
1551 disable(struct servtab *sep) in disable()
1584 static struct servtab serv;
1608 static struct servtab *
1611 struct servtab *sep = &serv; in getconfigent()
1989 freeconfig(struct servtab *cp) in freeconfig()
2112 check_loop(const struct sockaddr *sa, const struct servtab *sep) in check_loop()
2114 struct servtab *se2; in check_loop()
2117 for (se2 = servtab; se2; se2 = se2->se_next) { in check_loop()
2154 print_service(const char *action, const struct servtab *sep) in print_service()
2204 cpmip(const struct servtab *sep, int ctrl) in cpmip()
2344 search_conn(struct servtab *sep, int ctrl) in search_conn()
2419 room_conn(struct servtab *sep, struct conninfo *conn) in room_conn()
2475 resize_conn(struct servtab *sep, int maxpip) in resize_conn()
2503 free_connlist(struct servtab *sep) in free_connlist()