diff options
author | Yann Ylavic <ylavic@apache.org> | 2021-11-25 21:45:54 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2021-11-25 21:45:54 +0100 |
commit | 5da71e7634542cdeefd2b5376f7c7bf5cd6e8b8a (patch) | |
tree | 6bac2972a2245486b5d4df9ddb7dcc2ec7f77451 /include | |
parent | mod_http2: fix logic for non-proxy Server and Date response headers. (diff) | |
download | apache2-5da71e7634542cdeefd2b5376f7c7bf5cd6e8b8a.tar.xz apache2-5da71e7634542cdeefd2b5376f7c7bf5cd6e8b8a.zip |
Trigger ci.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1895340 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/http_protocol.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index 9c9cb952b2..38eef396a3 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -96,6 +96,13 @@ AP_DECLARE(void) ap_get_mime_headers(request_rec *r); AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r, apr_bucket_brigade *bb); +/** + * Run post_read_request hook and validate. + * @param r The current request + * @return OK or HTTP_... + */ +AP_DECLARE(int) ap_post_read_request(request_rec *r); + /* Finish up stuff after a request */ /** |