Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6810910228 for ; Sat, 9 Nov 2013 14:49:49 +0000 (UTC) Received: (qmail 42750 invoked by uid 500); 9 Nov 2013 14:49:48 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 42692 invoked by uid 500); 9 Nov 2013 14:49:47 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 42685 invoked by uid 99); 9 Nov 2013 14:49:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Nov 2013 14:49:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Nov 2013 14:49:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 26E8623889BB; Sat, 9 Nov 2013 14:49:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1540318 - /httpd/httpd/trunk/modules/proxy/mod_proxy.h Date: Sat, 09 Nov 2013 14:49:26 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131109144926.26E8623889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Sat Nov 9 14:49:25 2013 New Revision: 1540318 URL: http://svn.apache.org/r1540318 Log: Expand some of these fields... mostlt it's the workers that we need to expand due to them mapping to actual hostnames NOTE: 96 enough? Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.h?rev=1540318&r1=1540317&r2=1540318&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original) +++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sat Nov 9 14:49:25 2013 @@ -305,16 +305,16 @@ PROXY_WORKER_DISABLED | PROXY_WORKER_STO #define PROXY_WORKER_DEFAULT_RETRY 60 /* Some max char string sizes, for shm fields */ -#define PROXY_WORKER_MAX_SCHEME_SIZE 16 -#define PROXY_WORKER_MAX_ROUTE_SIZE 64 -#define PROXY_BALANCER_MAX_ROUTE_SIZE PROXY_WORKER_MAX_ROUTE_SIZE -#define PROXY_WORKER_MAX_NAME_SIZE 96 -#define PROXY_BALANCER_MAX_NAME_SIZE PROXY_WORKER_MAX_NAME_SIZE -#define PROXY_WORKER_MAX_HOSTNAME_SIZE 64 -#define PROXY_BALANCER_MAX_HOSTNAME_SIZE PROXY_WORKER_MAX_HOSTNAME_SIZE -#define PROXY_BALANCER_MAX_STICKY_SIZE 64 +#define PROXY_WORKER_MAX_SCHEME_SIZE 16 +#define PROXY_WORKER_MAX_ROUTE_SIZE 96 +#define PROXY_BALANCER_MAX_ROUTE_SIZE 64 +#define PROXY_WORKER_MAX_NAME_SIZE 96 +#define PROXY_BALANCER_MAX_NAME_SIZE 64 +#define PROXY_WORKER_MAX_HOSTNAME_SIZE 96 +#define PROXY_BALANCER_MAX_HOSTNAME_SIZE 64 +#define PROXY_BALANCER_MAX_STICKY_SIZE 64 -#define PROXY_MAX_PROVIDER_NAME_SIZE 16 +#define PROXY_MAX_PROVIDER_NAME_SIZE 16 #define PROXY_STRNCPY(dst, src) ap_proxy_strncpy((dst), (src), (sizeof(dst)))