]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_http2/mod_proxy_http2: add new module flags
authorStefan Eissing <icing@apache.org>
Mon, 29 Jan 2018 13:10:22 +0000 (13:10 +0000)
committerStefan Eissing <icing@apache.org>
Mon, 29 Jan 2018 13:10:22 +0000 (13:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1822503 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/mod_http2.c
modules/http2/mod_proxy_http2.c

index e8dfb3782b059240b09a2a1b8d37b71794bf898a..19b565ef0df1b9dc762d1bd5ee5503a2079700ae 100644 (file)
@@ -53,7 +53,10 @@ AP_DECLARE_MODULE(http2) = {
     h2_config_create_svr, /* func to create per server config */
     h2_config_merge_svr,  /* func to merge per server config */
     h2_cmds,              /* command handlers */
-    h2_hooks
+    h2_hooks,
+#if defined(AP_MODULE_FLAG_NONE)
+    AP_MODULE_FLAG_ALWAYS_MERGE
+#endif
 };
 
 static int h2_h2_fixups(request_rec *r);
index 78781f27ea313cf474560101aaaddad28066bda7..92413090b607818bc363c7017710a5f0080a4f3b 100644 (file)
@@ -38,7 +38,10 @@ AP_DECLARE_MODULE(proxy_http2) = {
     NULL,              /* create per-server config structure */
     NULL,              /* merge per-server config structures */
     NULL,              /* command apr_table_t */
-    register_hook      /* register hooks */
+    register_hook,     /* register hooks */
+#if defined(AP_MODULE_FLAG_NONE)
+    AP_MODULE_FLAG_ALWAYS_MERGE
+#endif
 };
 
 /* Optional functions from mod_http2 */