Home | History | Annotate | Download | only in inetd

Lines Matching defs:servtab

142  * requested is passed to tcpmux, which looks it up in the servtab list
257 struct servtab *servtab;
264 static void chargen_dg(int, struct servtab *);
265 static void chargen_stream(int, struct servtab *);
266 static void daytime_dg(int, struct servtab *);
267 static void daytime_stream(int, struct servtab *);
268 static void discard_dg(int, struct servtab *);
269 static void discard_stream(int, struct servtab *);
270 static void echo_dg(int, struct servtab *);
271 static void echo_stream(int, struct servtab *);
273 static void machtime_dg(int, struct servtab *);
274 static void machtime_stream(int, struct servtab *);
277 static void run_service(int, struct servtab *, int);
278 static void tcpmux(int, struct servtab *);
289 static void spawn(struct servtab *, int);
296 void (*bi_fn)(int, struct servtab *);
410 struct servtab *sep;
441 sep = (struct servtab *)ev->udata;
466 spawn(struct servtab *sep, int ctrl)
517 run_service(int ctrl, struct servtab *sep, int didfork)
522 struct servtab *s;
571 for (s = servtab; s != NULL; s = s->se_next)
640 struct servtab *sep;
647 for (sep = servtab; sep != NULL; sep = sep->se_next)
672 struct servtab *sep;
675 for (sep = servtab; sep != NULL; sep = sep->se_next) {
695 struct servtab *sep;
697 for (sep = servtab; sep != NULL; sep = sep->se_next) {
723 setup(struct servtab *sep)
846 close_sep(struct servtab *sep)
860 register_rpc(struct servtab *sep)
898 unregister_rpc(struct servtab *sep)
1159 echo_stream(int s, struct servtab *sep) /* Echo service -- echo data back */
1172 echo_dg(int s, struct servtab *sep) /* Echo service -- echo data back */
1194 discard_stream(int s, struct servtab *sep) /* Discard service -- ignore data */
1206 discard_dg(int s, struct servtab *sep) /* Discard service -- ignore data */
1232 chargen_stream(int s, struct servtab *sep) /* Character generator */
1262 chargen_dg(int s, struct servtab *sep) /* Character generator */
1324 machtime_stream(int s, struct servtab *sep)
1334 machtime_dg(int s, struct servtab *sep)
1356 daytime_stream(int s,struct servtab *sep)
1371 daytime_dg(int s, struct servtab *sep)
1440 tcpmux(int ctrl, struct servtab *sep)
1461 for (sep = servtab; sep != NULL; sep = sep->se_next) {
1472 for (sep = servtab; sep != NULL; sep = sep->se_next) {
1608 try_biltin(struct servtab *sep)