chuck 01/06/08 03:14:26
Modified: module-1.0 CHANGES http_protocol.c.patch mod_proxy.h
Log:
Clean up first round
Revision Changes Path
1.3 +3 -0 httpd-proxy/module-1.0/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/httpd-proxy/module-1.0/CHANGES,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CHANGES 2001/06/08 07:39:02 1.2
+++ CHANGES 2001/06/08 10:14:17 1.3
@@ -1,6 +1,9 @@
mod_proxy changes for httpd 1.3.21-dev
+ *) Changes for 1.3.20+
+ [Chuck Murcko <chuck@topsail.org>]
+
*) Add persistent connection handling
The patch changes mod_proxy to write the reply-headers using
ap_send_http_header() instead of directly using ap_bvputs(). This not
1.2 +3 -3 httpd-proxy/module-1.0/http_protocol.c.patch
Index: http_protocol.c.patch
===================================================================
RCS file: /home/cvs/httpd-proxy/module-1.0/http_protocol.c.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- http_protocol.c.patch 2001/06/08 07:40:59 1.1
+++ http_protocol.c.patch 2001/06/08 10:14:18 1.2
@@ -1,6 +1,6 @@
---- src/main/http_protocol.c Fri Feb 16 09:53:24 2001
-+++ src/main/http_protocol.c Thu Mar 8 01:48:17 2001
-@@ -1467,12 +1467,10 @@
+--- src/main/http_protocol.c Mon Mar 19 20:14:56 2001
++++ src/main/http_protocol.c Mon Mar 19 20:14:40 2001
+@@ -1473,12 +1473,10 @@
if (!r->status_line)
r->status_line = status_lines[ap_index_of_response(r->status)];
1.3 +0 -30 httpd-proxy/module-1.0/mod_proxy.h
Index: mod_proxy.h
===================================================================
RCS file: /home/cvs/httpd-proxy/module-1.0/mod_proxy.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mod_proxy.h 2001/06/08 07:39:04 1.2
+++ mod_proxy.h 2001/06/08 10:14:20 1.3
@@ -71,36 +71,6 @@
If TESTING is set, then garbage collection doesn't delete ... probably a good
idea when hacking.
- This code is still experimental!
-
- Things to do:
-
- 1. Make it garbage collect in the background, not while someone is waiting for
- a response!
-
- 2. Check the logic thoroughly.
-
- 3. Empty directories are only removed the next time round (but this does avoid
- two passes). Consider doing them the first time round.
-
- Ben Laurie <ben@algroup.co.uk> 30 Mar 96
-
- More things to do:
-
- 0. Code cleanup (ongoing)
-
- 1. add 230 response output for ftp now that it works
-
- 2. Make the ftp proxy transparent, also same with (future) gopher & wais
-
- 3. Use protocol handler struct a la Apache module handlers (Dirk van Gulik)
-
- 4. Use a cache expiry database for more efficient GC (Jeremy Wohl)
-
- 5. Bulletproof GC against SIGALRM
-
- Chuck Murcko <chuck@topsail.org> 15 April 1997
-
*/
#define TESTING 0
|