From 0becd1ee4efe54c6eb12bcaa8f93a8dfc18459e4 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 9 Jan 2007 05:29:58 +0000 Subject: [PATCH] A slightly more effective message, keep hammering AcceptEx so there is no confusion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@494321 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/child.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index ad612fc12a..5e51eec4cd 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -602,9 +602,12 @@ static unsigned int __stdcall winnt_accept(void *lr_) context->accept_socket = INVALID_SOCKET; if (err_count > MAX_ACCEPTEX_ERR_COUNT) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, - "Child %d: Encountered too many errors accepting client connections. " - "Possible causes: dynamic address renewal, or incompatible VPN or firewall software. " - "Try using the Win32DisableAcceptEx directive.", my_pid); + "Child %d: Encountered too many AcceptEx " + "faults accepting client connections. " + "Possible causes: dynamic address renewal, " + "or incompatible VPN or firewall software. " + "Try the directive Win32DisableAcceptEx.", + my_pid); err_count = 0; } continue; @@ -614,9 +617,11 @@ static unsigned int __stdcall winnt_accept(void *lr_) ++err_count; if (err_count > MAX_ACCEPTEX_ERR_COUNT) { ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, - "Child %d: Encountered too many errors accepting client connections. " + "Child %d: Encountered too many AcceptEx " + "faults accepting client connections. " "Possible causes: Unknown. " - "Try using the Win32DisableAcceptEx directive.", my_pid); + "Try the directive Win32DisableAcceptEx.", + my_pid); err_count = 0; } closesocket(context->accept_socket); -- 2.40.0