summaryrefslogtreecommitdiff
path: root/src/request.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-01-09 23:56:40 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:29 -0400
commita22cdca1cbcfb43edcf5c0b8eaa330b4ec936d52 (patch)
tree2aefdca416bfd36d80c54bd6d349d5aefcca07aa /src/request.h
parent100dfaa3f3785704d2df264e27ab698e27272687 (diff)
downloadlighttpd-git-a22cdca1cbcfb43edcf5c0b8eaa330b4ec936d52.tar.gz
[core] move addtl request-specific struct members
Diffstat (limited to 'src/request.h')
-rw-r--r--src/request.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/request.h b/src/request.h
index 76bc7cf5..a8c38537 100644
--- a/src/request.h
+++ b/src/request.h
@@ -113,6 +113,13 @@ struct request_st {
uint32_t conditional_is_valid;
struct cond_cache_t *cond_cache;
struct cond_match_t *cond_match;
+
+ array env; /* used to pass lighttpd internal stuff */
+
+ /* error-handler */
+ int error_handler_saved_status;
+ http_method_t error_handler_saved_method;
+
buffer *pathinfo;
buffer *server_name_buf;
};