]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_proxy: follow up to r1750301.
authorYann Ylavic <ylavic@apache.org>
Mon, 27 Jun 2016 08:08:26 +0000 (08:08 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 27 Jun 2016 08:08:26 +0000 (08:08 +0000)
s/is_socket_connected/get_socket_connected/ in the !USE_ALTERNATE_IS_CONNECTED
case, and add CHANGE + MMN entries.

[Reverted by r1750376]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1750305 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
include/ap_mmn.h
modules/proxy/proxy_util.c

diff --git a/CHANGES b/CHANGES
index 229e85f65184363f7e08f207a021e16c479651fc..07a9feb6fd93fe22a9d4ff77d4656a4126e69fe3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
 
+  *) mod_proxy: don't reuse backend connections with data available before the
+     request is sent.  PR 57832.  [Yann Ylavic]
+
   *) mod_sed: Fix 'x' command processing. [Christophe Jaillet]
 
   *) core: Drop an invalid Last-Modified header value coming
index c4c4188b01d179718aee237cb4697a9d33b2c87f..230bdebf2510e782f7c5e1703a23017f57095153 100644 (file)
  *                         dav_success_proppatch.
  * 20160608.4 (2.5.0-dev)  Add dav_acl_provider, dav_acl_provider_register
  *                         dav_get_acl_providers.
+ * 20160608.5 (2.5.0-dev)  Add tmp_bb to proxy_conn_rec.
  */
 
 #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
 #ifndef MODULE_MAGIC_NUMBER_MAJOR
 #define MODULE_MAGIC_NUMBER_MAJOR 20160608
 #endif
-#define MODULE_MAGIC_NUMBER_MINOR 4                 /* 0...n */
+#define MODULE_MAGIC_NUMBER_MINOR 5                 /* 0...n */
 
 /**
  * Determine if the server's current MODULE_MAGIC_NUMBER is at least a
index 908c1d6e7215f29f8f6d3fdd8f9882b6c2c17ce0..cfda40519552c937e4a17737f6f32d06e5cfb3a1 100644 (file)
@@ -2525,8 +2525,7 @@ static int get_socket_connected(apr_socket_t *socket)
 
 }
 #else
-static int is_socket_connnected(apr_socket_t *socket)
-
+static int get_socket_connnected(apr_socket_t *socket)
 {
     apr_size_t buffer_len = 1;
     char test_buffer[1];