if backend->close is set too early, proxy_util.c will close it right
away and then blow away the field.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1587654 13f79535-47bb-0310-9956-
ffa450edef68
}
backend->is_ssl = 0;
- backend->close = 1;
+ backend->close = 0;
retry = 0;
while (retry < 2) {
break;
}
+ backend->close = 1; /* must be after ap_proxy_determine_connection */
+
/* Step Three: Process the Request */
status = ap_proxy_wstunnel_request(p, r, backend, worker, conf, uri, locurl,
server_portstr, scheme);