]> granicus.if.org Git - apache/blob - modules/proxy/CHANGES
b6cd476e7ff2e60fe02e50d336098e5d4c0191d5
[apache] / modules / proxy / CHANGES
1
2 mod_proxy changes for httpd 2.0.18-dev
3
4   *) FTP return code variable cleanup; fixed problem in login
5
6   *) Get PORT working again in the ftp proxy.
7      [Victor Orlikowski <v.j.orlikowski@gte.net>]
8
9   *) Return result code check for FTP QUIT, after fixing
10      problems with passive connection handling.
11      [Victor Orlikowski <v.j.orlikowski@gte.net>]
12
13   *) Reorganize ap_proxy_string_read() internally to not process eos
14      buckets.
15      [Chuck Murcko <chuck@topsail.org>]
16      [Victor Orlikowski <v.j.orlikowski@gte.net>]
17
18   *) Remove result code check for FTP QUIT command. Some servers send
19      nothing at all back in response to QUIT.
20      [Chuck Murcko <chuck@topsail.org>]
21      [Victor Orlikowski <v.j.orlikowski@gte.net>]
22
23   *) Reverse previous patch since the core reverted.
24      [Chuck Murcko <chuck@topsail.org>]
25
26   *) Remove indirection on number of bytes to read for input filters.
27      [Chuck Murcko <chuck@topsail.org>]
28
29   *) Fixed a problem with directory listing corruption in the
30      PROXY_DIR filter.
31      [Graham Leggett <minfrin@sharp.fm>]
32
33   *) mod_proxy and the proxy submodules now build properly as DSOs.
34      [Graham Leggett <minfrin@sharp.fm>]
35
36   *) Stopped the HTTP proxy from trying to read entity bodies when there
37      wasn't one (response was 1xx, 204, 205 or 304).
38      [Graham Leggett <minfrin@sharp.fm>]
39
40   *) Made sure dates were canonicalised correctly when passed to the client
41      browser through the HTTP proxy.
42      [Graham Leggett <minfrin@sharp.fm>]
43
44   *) Split each individual proxy protocol into separate modules.
45      [Graham Leggett <minfrin@sharp.fm>]
46
47   *) Added Max-Forwards support for all request types so as to prevent
48      loops.
49      [Graham Leggett <minfrin@sharp.fm>]
50
51   *) Fix warnings about byte count type on Darwin (connect handler).
52      [Chuck Murcko <chuck@topsail.org>]
53
54   *) IPV6 EPSV support for IPV6 in FTP proxy.
55      [Graham Leggett <minfrin@sharp.fm>]
56
57   *) FTP directory filter works now.
58      [Graham Leggett <minfrin@sharp.fm>]
59
60   *) Fixed some thread-safety issues with the HTTP proxy in mod_proxy.
61      [Graham Leggett <minfrin@sharp.fm>]
62
63   *) PASV FTP works now.
64      [Graham Leggett <minfrin@sharp.fm>]
65
66   *) Reworked the line-at-a-time read from the control connection to
67      workaround a stray empty bucket returned by the HTTP_IN filter.
68      [Graham Leggett <minfrin@sharp.fm>]
69
70   *) Stopped the CORE filter from sending off an HTTP response when a
71      CONNECT tunnel was closed.
72      [Graham Leggett <minfrin@sharp.fm>]
73
74   *) Fixed the poll() loop in proxy_connect.c -> it works now!!!
75      [Graham Leggett <minfrin@sharp.fm>]
76
77   *) Converted send_dir() to ap_proxy_send_dir_filter() in proxy_ftp.c.
78      [Graham Leggett <minfrin@sharp.fm>]
79
80   *) Major rework of ap_proxy_ftp_handler() to use filters (begone foul
81      BUFF!!!). It compiles, but is untested, and the build environment needs
82      to be fixed to include proxy_ftp.c.
83      [Graham Leggett <minfrin@sharp.fm>]
84
85   *) Cleanup of dead functions within proxy_util.c.
86      [Graham Leggett <minfrin@sharp.fm>]
87
88   *) Reworked the storage of the client socket between keepalive connections
89      to fix some nasty problems with the socket lasting longer than the
90      memory pool it was allocated from.
91      [Graham Leggett <minfrin@sharp.fm>]
92
93   *) Fixed bug where a hostname without a "." in it (such as "localhost")
94      would not trigger an IP address check with ProxyBlock.
95      [Graham Leggett <minfrin@sharp.fm>]
96
97   *) Fixed ProxyBlock bugs with ap_proxy_http_handler() and
98      ap_proxy_connect_handler().
99      [Graham Leggett <minfrin@sharp.fm>]
100
101   *) Updated ap_proxy_connect_handler() to support APR, while
102      moving some common code between http_handler and connect_handler
103      to proxy_util.c.
104      [Graham Leggett <minfrin@sharp.fm>]
105
106   *) Updated mod_proxy.html docs to include v2.0 configuration.
107      [Graham Leggett <minfrin@sharp.fm>]
108
109   *) Fixed problem where responses without entity bodies would cause
110      the directly following proxy keepalive request to fail.
111      [Graham Leggett <minfrin@sharp.fm>]
112
113   *) Added support for downstream keepalives in mod_proxy.
114      [Graham Leggett <minfrin@sharp.fm>]
115
116   *) Changed mod_proxy ap_proxy_http_handler() to support APR properly.
117      [Graham Leggett <minfrin@sharp.fm>]
118
119   *) Fix problem where incoming response headers were not being returned
120      to the client in mod_proxy.
121      [Graham Leggett <minfrin@sharp.fm>]
122
123   *) Added X-Forwarded-For, X-Forwarded-Host and X-Forwarded-Server to
124      reverse proxied request headers in mod_proxy.
125      [Graham Leggett <minfrin@sharp.fm>]
126
127   *) replace INADDR_NONE with APR_INADDR_NONE [Ian Holsman <IanH@cnet.com>]
128
129   *) Fix problem with proxy configuration where globally set
130      configuration options were overridden inside virtual hosts.
131      [Graham Leggett <minfrin@sharp.fm>]
132
133   *) Fix ProxyReceiveBufferSize where default value was left
134      uninitialised.
135      [Graham Leggett <minfrin@sharp.fm>]
136
137   *) Some small changes:
138      - Ensured hop-by-hop headers were stripped as per
139        RFC2616 13.5.1.
140      - Upgraded version code to HTTP/1.1.
141      - Added Connection: close until Keepalives come.
142      - Some cosmetic fixes and commenting.
143      [Graham Leggett <minfrin@sharp.fm>]
144
145 mod_proxy changes for 2.0.14 alpha
146
147   *) removed ProxyNoCache and ProxyCacheForceCompletion config directives,
148      since we no longer directly cache from this module
149      [Chuck Murcko <chuck@topsail.org>]
150
151   *) removed cache
152      [Chuck Murcko <chuck@topsail.org>]
153
154   *) initial rerebuild for 2.0
155      [Chuck Murcko <chuck@topsail.org>]
156