summaryrefslogtreecommitdiff
path: root/src/configfile.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2018-04-18 01:38:41 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2018-08-05 03:44:15 -0400
commite8c1efd5dfc11b5001113198741536648067c024 (patch)
treeb0b292e25d5a3e13383172fe6e3b46e35b1ffbe9 /src/configfile.h
parentcf9474aa2ccfff8a76684ed484a626ffabf86444 (diff)
downloadlighttpd-git-e8c1efd5dfc11b5001113198741536648067c024.tar.gz
[core] data_config_pcre_compile,exec()
collect PCRE usage related to config processing
Diffstat (limited to 'src/configfile.h')
-rw-r--r--src/configfile.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/configfile.h b/src/configfile.h
index 83fecad4..1cef1209 100644
--- a/src/configfile.h
+++ b/src/configfile.h
@@ -79,7 +79,11 @@ struct data_config {
#endif
};
+struct cond_cache_t; /* declaration */
+
data_config *data_config_init(void);
+int data_config_pcre_compile(data_config *dc);
+int data_config_pcre_exec(data_config *dc, struct cond_cache_t *cache, buffer *b);
typedef struct {
server *srv;