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/11/24 17:59:02 UTC

svn commit: r1716211 - in /httpd/httpd/trunk: CHANGES modules/http2/h2_session.c modules/http2/h2_version.h

Author: icing
Date: Tue Nov 24 16:59:00 2015
New Revision: 1716211

URL: http://svn.apache.org/viewvc?rev=1716211&view=rev
Log:
update CHANGES, version and compiler warning

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

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1716211&r1=1716210&r2=1716211&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Tue Nov 24 16:59:00 2015
@@ -1,10 +1,6 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
-  *) mod_http2: trailers are sent after reponse body if set in request_rec
-     trailers_out before the end-of-request bucket is sent through the 
-     output filters. [Stefan Eissing]
-     
   *) mod_ssl: For the "SSLStaplingReturnResponderErrors off" case, make sure
      to only staple responses with certificate status "good". [Kaspar Brand]
 

Modified: httpd/httpd/trunk/modules/http2/h2_session.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_session.c?rev=1716211&r1=1716210&r2=1716211&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_session.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_session.c Tue Nov 24 16:59:00 2015
@@ -1385,6 +1385,7 @@ apr_status_t h2_session_set_prio(h2_sess
     (void)session;
     (void)stream;
     (void)prio;
+    (void)valid_weight;
 #endif
     return status;
 }

Modified: httpd/httpd/trunk/modules/http2/h2_version.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_version.h?rev=1716211&r1=1716210&r2=1716211&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_version.h (original)
+++ httpd/httpd/trunk/modules/http2/h2_version.h Tue Nov 24 16:59:00 2015
@@ -20,7 +20,7 @@
  * @macro
  * Version number of the h2 module as c string
  */
-#define MOD_HTTP2_VERSION "1.0.7-DEV"
+#define MOD_HTTP2_VERSION "1.0.8-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 0x010007
+#define MOD_HTTP2_VERSION_NUM 0x010008
 
 
 #endif /* mod_h2_h2_version_h */