chuck 96/06/08 14:21:31
Modified: src mod_proxy.c
Log:
Submitted by: Chuck Murcko
Editorial change at the header to connect_handler()
Revision Changes Path
1.24 +5 -3 apache/src/mod_proxy.c
Index: mod_proxy.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_proxy.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -C3 -r1.23 -r1.24
*** mod_proxy.c 1996/06/07 20:19:02 1.23
--- mod_proxy.c 1996/06/08 21:21:29 1.24
***************
*** 2595,2605 ****
}
/*
! * This handles Netscape-SSL style "CONNECT" proxy requests.
* A connection is opened to the specified host and data is
* passed through between the WWW site and the browser.
! * This code is based on the IETF document at
! * http://www.netscape.com/docs/std/tunnelling_ssl.html.
*
* FIXME: this is bad, because it does its own socket I/O
* instead of using the I/O in buff.c. However,
--- 2595,2607 ----
}
/*
! * This handles Netscape CONNECT method secure proxy requests.
* A connection is opened to the specified host and data is
* passed through between the WWW site and the browser.
! *
! * This code is based on the INTERNET-DRAFT document
! * "Tunneling SSL Through a WWW Proxy" currently at
! * http://www.mcom.com/newsref/std/tunneling_ssl.html.
*
* FIXME: this is bad, because it does its own socket I/O
* instead of using the I/O in buff.c. However,