]> granicus.if.org Git - apache/commitdiff
A slightly more effective message, keep hammering AcceptEx so there is no confusion.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 9 Jan 2007 05:29:58 +0000 (05:29 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 9 Jan 2007 05:29:58 +0000 (05:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@494321 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/child.c

index ad612fc12a3eb4e472b79c08d5e135cf48276121..5e51eec4cd3f44b264111ef1f058640239c89257 100644 (file)
@@ -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);