1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

creating ap_array_index in util, forwarding scheme into request processing, enabling SSL vars only when scheme is not http:, delayed connection creation until task worker assignment

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1696428 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2015-08-18 14:33:55 +00:00
parent 2db3ea7e7f
commit e005a156f4
16 changed files with 80 additions and 119 deletions

View File

@@ -37,9 +37,9 @@ struct h2_request {
/* pseudo header values, see ch. 8.1.2.3 */
const char *method;
const char *path;
const char *authority;
const char *scheme;
const char *authority;
const char *path;
};
h2_request *h2_request_create(int id, apr_pool_t *pool,