summaryrefslogtreecommitdiff
path: root/src/keyvalue.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-11-21 00:47:35 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2021-11-21 21:27:52 -0500
commit7db817c59a89375ece9c3ec3b4ef7e4302e64549 (patch)
tree5a58d66c9704ed4cbec020dedb357d87c370a8c2 /src/keyvalue.h
parent6d47d4c69997c3f62e35d71203d770a4a98dcb56 (diff)
downloadlighttpd-git-7db817c59a89375ece9c3ec3b4ef7e4302e64549.tar.gz
[core] extend pcre_keyvalue_ctx to pass more state
extend pcre_keyvalue_ctx to pass internal state
Diffstat (limited to 'src/keyvalue.h')
-rw-r--r--src/keyvalue.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyvalue.h b/src/keyvalue.h
index c8671935..97d500a1 100644
--- a/src/keyvalue.h
+++ b/src/keyvalue.h
@@ -13,6 +13,10 @@ typedef struct pcre_keyvalue_ctx {
struct cond_match_t *cache;
struct burl_parts_t *burl;
int m;
+ /*(internal use)*/
+ int n;
+ void *ovec;
+ const char *subject;
} pcre_keyvalue_ctx;
typedef struct {