You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2022/08/17 08:00:36 UTC

svn commit: r1903478 - /httpd/httpd/trunk/modules/http2/mod_http2.h

Author: rpluem
Date: Wed Aug 17 08:00:36 2022
New Revision: 1903478

URL: http://svn.apache.org/viewvc?rev=1903478&view=rev
Log:
* http2_get_num_workers is not deprecated.
  Hence move it out of the deprecation section

Modified:
    httpd/httpd/trunk/modules/http2/mod_http2.h

Modified: httpd/httpd/trunk/modules/http2/mod_http2.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/mod_http2.h?rev=1903478&r1=1903477&r2=1903478&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/mod_http2.h (original)
+++ httpd/httpd/trunk/modules/http2/mod_http2.h Wed Aug 17 08:00:36 2022
@@ -28,6 +28,9 @@ APR_DECLARE_OPTIONAL_FN(char *,
 APR_DECLARE_OPTIONAL_FN(int, 
                         http2_is_h2, (conn_rec *));
 
+APR_DECLARE_OPTIONAL_FN(void,
+                        http2_get_num_workers, (server_rec *s,
+                                                int *minw, int *max));
 
 /*******************************************************************************
  * START HTTP/2 request engines (DEPRECATED)
@@ -68,9 +71,6 @@ APR_DECLARE_OPTIONAL_FN(void,
                                                 conn_rec *rconn,
                                                 apr_status_t status));
 
-APR_DECLARE_OPTIONAL_FN(void,
-                        http2_get_num_workers, (server_rec *s,
-                                                int *minw, int *max));
 
 /*******************************************************************************
  * END HTTP/2 request engines (DEPRECATED)