18 struct chandler *iface;
23 int (*handle)(struct child *ch, struct hthead *req, int fd, void (*chinit)(void *), void *idata);
24 void (*merge)(struct child *dst, struct child *src);
25 void (*destroy)(struct child *ch);
28 void skipcfblock(struct cfstate *s);
29 struct cfstate *mkcfparser(FILE *in, char *name);
30 void freecfparser(struct cfstate *s);
31 char **getcfline(struct cfstate *s);
32 char *findstdconf(char *name);
34 struct child *newchild(char *name, struct chandler *iface, void *pdata);
35 void freechild(struct child *ch);
36 void mergechildren(struct child *dst, struct child *src);
37 struct child *parsechild(struct cfstate *s);
38 int childhandle(struct child *ch, struct hthead *req, int fd, void (*chinit)(void *), void *idata);