1 #ifndef HTTPD_CONF_REQ_H
2 #define HTTPD_CONF_REQ_H
3 
4 #include <vstr.h>
5 
6 struct Con;
7 struct Httpd_req_data;
8 
9 extern int httpd_conf_req_d0(struct Con *, struct Httpd_req_data *,
10                              time_t, Conf_parse *, Conf_token *);
11 extern int httpd_conf_req_parse_file(Conf_parse *,
12 				     struct Con *, struct Httpd_req_data *);
13 
14 #endif
15