https://issues.apache.org/bugzilla/show_bug.cgi?id=43897
--- Comment #6 from Rob <[EMAIL PROTECTED]> 2008-04-02 16:53:24 PST ---
I had a similar problem with 2.2.6, using reverse proxy with persistent
connections on windows. I traced it to:
ap_proxy_connect_backend(...)
if (!(connected = is_socket_connected(conn->sock))) {
apr_socket_close(conn->sock);
.....
is_socket_connected() returns 0 on the 'connected/persistent' socket (problem
1)
The sequence that then 'reopens' the socket doesn't clear the memory pool in
proxy_conn_rec so memory assigned (from the apr_socket_create) to the pool just
accumulates (about 16k/req) until it gets an error (problem 2).
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]