You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/12/04 16:17:44 UTC

svn commit: r1717981 - in /httpd/httpd/trunk: CHANGES modules/http2/h2_version.h

Author: icing
Date: Fri Dec  4 15:17:43 2015
New Revision: 1717981

URL: http://svn.apache.org/viewvc?rev=1717981&view=rev
Log:
update after backport of mod_http2 v 1.0.10

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/http2/h2_version.h

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1717981&r1=1717980&r2=1717981&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Fri Dec  4 15:17:43 2015
@@ -1,19 +1,10 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: connection level window for flow control is set to protocol
-     maximum of 2GB-1, preventing window exhaustion when sending data on many
-     streams with higher cumulative window size. 
-     Reducing write frequency unless push promises need to be flushed.
-     [Stefan Eissing]
-  
   *) mod_ssl: for all ssl_engine_vars.c lookups, fall back to master connection
      if conn_rec itself holds no valid SSLConnRec*. Fixes PR58666.
      [Stefan Eissing]
      
-  *) mod_http2: required minimum version of libnghttp2 is 1.2.1
-     [Stefan Eissing]
-  
   *) mod_proxy_fdpass: Fix AH01153 error when using the default configuration.
      In earlier version of httpd, you can explicitelly set the 'flusher' parameter
      to 'flush' as a workaround. (i.e. flusher=flush)

Modified: httpd/httpd/trunk/modules/http2/h2_version.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_version.h?rev=1717981&r1=1717980&r2=1717981&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_version.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_version.h Fri Dec  4 15:17:43 2015
@@ -20,7 +20,7 @@
  * @macro
  * Version number of the h2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.0.10-DEV"
+#define MOD_HTTP2_VERSION "1.0.11-DEV"
 
 /**
  * @macro
@@ -28,7 +28,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 0x01000a
+#define MOD_HTTP2_VERSION_NUM 0x01000b
 
 
 #endif /* mod_h2_h2_version_h */