Commit ea803501 authored by Allan K. Edwards's avatar Allan K. Edwards
Browse files

Fix Windows CompContext buff size miscalculation


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@158685 13f79535-47bb-0310-9956-ffa450edef68
parent 8d6fc72b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -4,6 +4,9 @@ Changes with Apache 2.1.5
Changes with Apache 2.1.4
  *) Fix Windows CompContext buff size miscalculation
     [Allan Edwards]
  *) Add ReceiveBufferSize directive to control the TCP receive buffer.
     [Eric Covener <covener gmail.com>]
+2 −2
Original line number Diff line number Diff line
@@ -87,9 +87,9 @@ AP_DECLARE(void) ap_signal_parent(ap_signal_parent_e type);
                                                  (PCHAR)(address) - \
                                                  (PCHAR)(&((type *)0)->field)))
#if APR_HAVE_IPV6
#define PADDED_ADDR_SIZE sizeof(SOCKADDR_IN6)+16
#define PADDED_ADDR_SIZE (sizeof(SOCKADDR_IN6)+16)
#else
#define PADDED_ADDR_SIZE sizeof(SOCKADDR_IN)+16
#define PADDED_ADDR_SIZE (sizeof(SOCKADDR_IN)+16)
#endif

typedef struct CompContext {