Lines Matching refs:servtab

202 static void	close_sep(struct servtab *);
205 static int cpmip(const struct servtab *, int);
207 static struct servtab *enter(struct servtab *);
208 static void freeconfig(struct servtab *);
209 static struct servtab *getconfigent(void);
212 static void addchild(struct servtab *, int);
214 static void enable(struct servtab *);
215 static void disable(struct servtab *);
218 static void setup(struct servtab *);
220 static void ipsecsetup(struct servtab *);
222 static void unregisterrpc(register struct servtab *sep);
223 static struct conninfo *search_conn(struct servtab *sep, int ctrl);
224 static int room_conn(struct servtab *sep, struct conninfo *conn);
228 static void resize_conn(struct servtab *sep, int maxperip);
229 static void free_connlist(struct servtab *sep);
236 static void print_service(const char *, const struct servtab *);
273 struct servtab *servtab; variable
319 struct servtab *sep; in main()
607 for (sep = servtab; n && sep; sep = sep->se_next) in main()
907 addchild(struct servtab *sep, pid_t pid) in addchild()
936 struct servtab *sep; in reapchild()
947 for (sep = servtab; sep; sep = sep->se_next) { in reapchild()
975 struct servtab *sep, *new, **sepp; in config()
986 for (sep = servtab; sep; sep = sep->se_next) in config()
1012 for (sep = servtab; sep; sep = sep->se_next) in config()
1156 sepp = &servtab; in config()
1176 unregisterrpc(struct servtab *sep) in unregisterrpc()
1179 struct servtab *sepp; in unregisterrpc()
1198 for (sepp = servtab; sepp; sepp = sepp->se_next) { in unregisterrpc()
1233 struct servtab *sep; in retry()
1236 for (sep = servtab; sep; sep = sep->se_next) in retry()
1242 setup(struct servtab *sep) in setup()
1380 ipsecsetup(struct servtab *sep) in ipsecsetup()
1454 close_sep(struct servtab *sep) in close_sep()
1490 static struct servtab *
1491 enter(struct servtab *cp) in enter()
1493 struct servtab *sep; in enter()
1504 sep->se_next = servtab; in enter()
1505 servtab = sep; in enter()
1511 enable(struct servtab *sep) in enable()
1539 disable(struct servtab *sep) in disable()
1572 static struct servtab serv;
1596 static struct servtab *
1599 struct servtab *sep = &serv; in getconfigent()
1977 freeconfig(struct servtab *cp) in freeconfig()
2100 check_loop(const struct sockaddr *sa, const struct servtab *sep) in check_loop()
2102 struct servtab *se2; in check_loop()
2105 for (se2 = servtab; se2; se2 = se2->se_next) { in check_loop()
2142 print_service(const char *action, const struct servtab *sep) in print_service()
2192 cpmip(const struct servtab *sep, int ctrl) in cpmip()
2332 search_conn(struct servtab *sep, int ctrl) in search_conn()
2407 room_conn(struct servtab *sep, struct conninfo *conn) in room_conn()
2463 resize_conn(struct servtab *sep, int maxpip) in resize_conn()
2491 free_connlist(struct servtab *sep) in free_connlist()