Don't kill me, but I was making a build for production here and I found a bug that I needed to fix. In jserv_ajpv12.c, we had a place that was causing a socket leak when jserv instances were down. It now simply closes the socket that was created if the connection failed. Bernie @@ -132,6 +132,8 @@ "can not connect to host", inet_ntoa(addr.sin_addr), port); + if (sock != -1) + ap_pclosesocket(p, sock); return -1; } Bernie Bernstein Talk City Inc. [EMAIL PROTECTED] Join the Conversation. voice: 617-558-1040 http://www.talkcity.com/ -- ---------------------------------------------------------- To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Archives and Other: <http://java.apache.org/main/mail.html> Problems?: [EMAIL PROTECTED]