X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fdirplex%2Fdirplex.h;h=d3011f56c0ae3788b0f82a374fc17d4e271470d9;hb=acc2d159e6f946ed6abc7c0e843a483d6478bee3;hp=028a3d93a40a97bde1f8c9f99eee2e4b245399ea;hpb=7711283ce85263a4177b9d27762fd5a4bc5cee41;p=ashd.git diff --git a/src/dirplex/dirplex.h b/src/dirplex/dirplex.h index 028a3d9..d3011f5 100644 --- a/src/dirplex/dirplex.h +++ b/src/dirplex/dirplex.h @@ -25,9 +25,15 @@ struct rule { char **patterns; }; +struct headmod { + struct headmod *next; + char *name, *value; +}; + struct pattern { struct pattern *next; int type; + struct headmod *headers; char *childnm; char **fchild; struct rule **rules; @@ -39,8 +45,10 @@ struct config *getconfig(char *path); struct config **getconfigs(char *file); struct child *findchild(char *file, char *name, struct config **cf); struct pattern *findmatch(char *file, int trydefault, int dir); +void modheaders(struct hthead *req, struct pattern *pat); extern time_t now; +extern struct child *notfound; extern struct config *gconfig, *lconfig; #endif