Hi all,
I have pretty much finished Keepalive support for mod_proxy v2.0. A
change needs to be made to the conn_rec structure to allow the keepalive
to store connections across requests.
The patch to httpd-2.0 is attached.
I will start committing the mod-proxy patch once this patch is sorted
out.
Regards,
Graham
--
-----------------------------------------
[EMAIL PROTECTED] "There's a moon
over Bourbon Street
tonight..."
diff -u3 -r --exclude=CVS ../../pristine/httpd-2.0/include/httpd.h
httpd-2.0/include/httpd.h
--- ../../pristine/httpd-2.0/include/httpd.h Mon Mar 26 00:08:43 2001
+++ httpd-2.0/include/httpd.h Thu Mar 29 15:29:20 2001
@@ -884,6 +884,10 @@
/** The length of the current request body
* @defvar long remain */
long remain;
+
+ /** Connection to a downstream server/proxy */
+ conn_rec *proxy;
+
};
/* Per-vhost config... */