Commit | Line | Data |
---|---|---|
600a1ce7 FT |
1 | #ifndef _ASH_DIRPLEX_H |
2 | #define _ASH_DIRPLEX_H | |
3 | ||
4 | #define PAT_BASENAME 0 | |
5 | #define PAT_PATHNAME 1 | |
6 | #define PAT_ALL 2 | |
7 | #define PAT_DEFAULT 3 | |
7711283c | 8 | #define PAT_LOCAL 4 |
600a1ce7 FT |
9 | |
10 | #define PT_FILE 0 | |
11 | #define PT_DIR 1 | |
12 | ||
13 | struct config { | |
14 | struct config *next, *prev; | |
15 | char *path; | |
16 | time_t mtime, lastck; | |
17 | struct child *children; | |
18 | struct pattern *patterns; | |
19 | char **index; | |
300d73d9 | 20 | char *capture; |
54490135 | 21 | int caproot; |
600a1ce7 FT |
22 | }; |
23 | ||
24 | struct rule { | |
25 | int type; | |
26 | char **patterns; | |
27 | }; | |
28 | ||
acc2d159 FT |
29 | struct headmod { |
30 | struct headmod *next; | |
31 | char *name, *value; | |
32 | }; | |
33 | ||
600a1ce7 FT |
34 | struct pattern { |
35 | struct pattern *next; | |
36 | int type; | |
acc2d159 | 37 | struct headmod *headers; |
600a1ce7 FT |
38 | char *childnm; |
39 | char **fchild; | |
40 | struct rule **rules; | |
41 | }; | |
42 | ||
43 | struct child *getchild(struct config *cf, char *name); | |
44 | struct config *readconfig(char *file); | |
45 | struct config *getconfig(char *path); | |
46 | struct config **getconfigs(char *file); | |
da75c835 | 47 | struct child *findchild(char *file, char *name, struct config **cf); |
600a1ce7 | 48 | struct pattern *findmatch(char *file, int trydefault, int dir); |
acc2d159 | 49 | void modheaders(struct hthead *req, struct pattern *pat); |
600a1ce7 FT |
50 | |
51 | extern time_t now; | |
b70b2d4f | 52 | extern struct child *notfound; |
600a1ce7 FT |
53 | extern struct config *gconfig, *lconfig; |
54 | ||
55 | #endif |