summaryrefslogtreecommitdiff
path: root/src/keyvalue.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-11-21 00:15:51 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 18:08:52 -0400
commitc193da34045541171234b79a943e2a5df700142e (patch)
tree71c037e6dcbd7d21eacdb83917b5377e0556cd72 /src/keyvalue.h
parent5977ce2b4abb40a829f538c2090aa51e82a397cf (diff)
downloadlighttpd-git-c193da34045541171234b79a943e2a5df700142e.tar.gz
[core] split cond cache from cond matches
Diffstat (limited to 'src/keyvalue.h')
-rw-r--r--src/keyvalue.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keyvalue.h b/src/keyvalue.h
index a32e6262..27831fe1 100644
--- a/src/keyvalue.h
+++ b/src/keyvalue.h
@@ -6,12 +6,13 @@
#include "buffer.h"
struct burl_parts_t; /* declaration */
-struct cond_cache_t; /* declaration */
+struct cond_match_t; /* declaration */
struct pcre_keyvalue; /* declaration */
typedef struct pcre_keyvalue_ctx {
- struct cond_cache_t *cache;
+ struct cond_match_t *cache;
struct burl_parts_t *burl;
+ int cond_match_count;
int m;
} pcre_keyvalue_ctx;