]> granicus.if.org Git - apache/commitdiff
update after backport
authorStefan Eissing <icing@apache.org>
Mon, 13 Mar 2017 15:54:59 +0000 (15:54 +0000)
committerStefan Eissing <icing@apache.org>
Mon, 13 Mar 2017 15:54:59 +0000 (15:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1786715 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/http2/h2_session.c
modules/http2/h2_version.h

diff --git a/CHANGES b/CHANGES
index c415dc3f68e79c962bfeb0e27bf35b0169255f56..bd768316e3ef7eb09096c34dd630f154bf7152bb 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,23 +1,8 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: moving session cleanup to pre_close hook to avoid races with
-     modules already shut down and slave connections still operating.
-     [Stefan Eissing]
-
   *) Add <IfDirective> and <IfSection> directives.  [Joe Orton]
 
-  *) mod_http2: stream timeouts now change to vhost values once the request
-     is parsed and processing starts. Initial values are taken from base
-     server or SNI host as before. [Stefan Eissing]
-     
-  *) mod_proxy_http2: fixed retry behaviour when frontend connection uses 
-     http/1.1. [Stefan Eissing]
-     
-  *) mod_http2: separate mutex instances for each bucket beam, resulting in 
-     less lock contention. input beams only created when necessary.
-     [Stefan Eissing]
-     
   *) mod_syslog: Support use of optional "tag" in syslog entries.
      PR 60525. [Ben Rubson <ben.rubson gmail.com>, Jim Jagielski]
 
index 8c74a68a9dea0a4935b7f7eb34236c808d347ee2..dd16820776d9c6e540a45598c8842952ac35064d 100644 (file)
@@ -730,7 +730,7 @@ static apr_status_t session_pool_cleanup(void *data)
          * data which has, at this time, already been freed. An example
          * is mod_ssl that uses request hooks. */
         ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c,
-                      H2_SSSN_LOG(APLOGNO(10020) session, 
+                      H2_SSSN_LOG(APLOGNO(10020), session, 
                       "session cleanup triggered by pool cleanup. "
                       "this should have happened earlier already."));
         return session_cleanup(session, "pool cleanup");
index 066487a798a563847febc405b97a4c97376e2585..fddfbccbac802553bfa2f49f0401531ee640af2f 100644 (file)
@@ -26,7 +26,7 @@
  * @macro
  * Version number of the http2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.9.3-DEV"
+#define MOD_HTTP2_VERSION "1.9.4-DEV"
 
 /**
  * @macro
@@ -34,7 +34,7 @@
  * release. This is a 24 bit number with 8 bits for major number, 8 bits
  * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
  */
-#define MOD_HTTP2_VERSION_NUM 0x010903
+#define MOD_HTTP2_VERSION_NUM 0x010904
 
 
 #endif /* mod_h2_h2_version_h */