blob: 93aad4e5f7dfd80621739db276b8f9befd9490f1 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
Willy TARREAU4404b7e2006-05-14 10:00:09 +020042006/05/14 : 1.2.13.1
5 - an uninitialized field in the struct session could cause a crash when
6 the session was freed. This has been encountered on Solaris only.
7 - Solaris and OpenBSD no not support shutdown() on listening socket. Let's
8 be nice to them by performing a soft stop if pause fails.
9
willy tarreauc3a2e072006-05-13 18:51:38 +0200102006/05/13 : 1.2.13
11 - 'maxconn' server parameter to do per-server session limitation
12 - queueing to support non-blocking session limitation
13 - fixed removal of cookies for cookie-less servers such as backup servers
14 - two separate wait queues for expirable and non-expirable tasks provide
15 better performance with lots of sessions.
16 - some code cleanups and performance improvements
17 - made state dumps a bit more verbose
18 - fixed missing checks for NULL srv in dispatch mode
19 - load balancing on backup servers was not possible in source hash mode.
20 - two session flags shared the same bit, but fortunately they were not
21 compatible.
22
willy tarreauc0d4bbd2006-04-15 21:47:50 +0200232006/04/15 : 1.2.12
24 Very few changes preparing for more important changes to support per-server
25 session limitations and queueing :
26 - ignore leading empty lines in HTTP requests as suggested by RFC2616.
27 - added the 'weight' parameter to the servers, limited to 1..256. It applies
28 to roundrobin and source hash.
29 - the optional '-s' option could clobber '-st' and '-sf' if compiled in.
30
willy tarreaue0dd2692006-03-30 16:27:34 +0200312006/03/30 : 1.2.11.1
32 - under some conditions, it might have been possible that when the
33 last dead server became available, it would not have been used
34 till another one would have changed state. Could not be reproduced
35 at all, however seems possible from the code.
36
willy tarreaud2058dc2006-03-25 20:35:41 +0100372006/03/25 : 1.2.11
38 - added the '-db' command-line option to disable backgrounding.
39 - added the -sf/-st command-line arguments which are used to specify
40 a list of pids to send a FINISH or TERMINATE signal upon startup.
41 They will also be asked to release their port if a bind fails.
42 - reworked the startup mechanism to allow the sending of a signal to a list
43 of old pids if a socket cannot be bound, with a retry for a limited amount
44 of time (1 second by default).
45 - added the ability to enforce limits on memory usage.
46 - added the 'source' load-balancing algorithm which uses the source IP(v4|v6)
47 - re-architectured the server round-robin mechanism to ease integration of
48 other algorithms. It now relies on the number of active and backup servers.
49 - added a counter for the number of active and backup servers, and report
50 these numbers upon SIGHUP or state change.
51
willy tarreaubfad5742006-03-23 14:19:11 +0100522006/03/23 : 1.2.10.1
53 - while fixing the backup server round-robin "feature", a new bug was
54 introduced which could miss some backup servers.
55 - the displayed proxy name was wrong when dumping upon SIGHUP.
56
willy tarreauaaff30e2006-03-19 21:30:41 +0100572006/03/19 : 1.2.10
58 - assert.h is needed when DEBUG is defined.
59 - ENORMOUS long standing bug affecting the epoll polling system :
60 event_data is a union, not a structure !
61 - Make fd management more robust and easier to debug. Also some
62 micro-optimisations.
63 - Limit the number of consecutive accept() in multi-process mode.
64 This produces a more evenly distributed load across the processes and
65 slightly improves performance by reducing bottlenecks.
66 - Make health-checks be more regular, and faster to retry after a timeout.
67 - Fixed some messages to ease parsing of alerts.
68 - provided a patch to enable epoll on RHEL3 kernels.
69 - Separated OpenBSD build from the main Makefile into a new one.
70
willy tarreau50be0172006-03-15 19:41:19 +0100712006/03/15 : 1.2.9
72 - haproxy could not be stopped after being paused, it had to be woken up
73 first. This has been fixed.
74 - the 'ulimit-n' parameter is now optional and by default computed from
75 maxconn + the number of listeners + the number of health-checks.
76 - it is now possible to specify a maximum number of connections at build
77 time with the SYSTEM_MAXCONN define. The value set in the configuration
78 file will then be limited to this value, and only the command-line '-n'
79 option will be able to bypass it. It will prevent against accidental
80 high memory usage on small systems.
81 - RFC2616 expects that any HTTP agent accepts multi-line headers. Earlier
82 versions did not detect a line beginning with a space as the continuation
83 of previous header. It is now correct.
84 - health checks sent to servers configured with identical intervals were
85 sent in perfect synchronisation because the initial time was the same
86 for all. This could induce high load peaks when fragile servers were
87 hosting tens of instances for the same application. Now the load is
88 spread evenly across the smallest interval amongst a listener.
89 - a new 'forceclose' option was added to make the proxy close the outgoing
90 channel to the server once it has sent all its headers and the server
91 starts responding. This helps some servers which don't close upon the
92 'Connection: close' header. It implies 'option httpclose'.
93 - there was a bug in the way the backup servers were handled. They were
94 erroneously load-balanced while the doc said the opposite. Since
95 load-balanced backup servers is one of the features some people have
96 been asking for, the problem was fixed to reflect the documented
97 behaviour and a new option 'allbackups' was introduced to provide the
98 feature to those who need it.
99 - a never ending connect() could lead to a fast select() loop if its
100 timeout times the number of retransmits exceeded the server read or write
101 timeout, because the later was used to compute select()'s timeout while
102 the connection timeout was not reached.
103 - now we initialize the libc's localtime structures very early so that even
104 under OOM conditions, we can still send dated error messages without
105 segfaulting.
106 - the 'daemon' mode implies 'quiet' and disables 'verbose' because file
107 descriptors are closed.
108
willy tarreau065f1c02006-01-29 22:10:07 +01001092006/01/29 : 1.2.8
110 - fixed a nasty bug affecting poll/epoll which could return unmodified data
111 from the server to the client, and sometimes lead to memory corruption
112 crashing the process.
113 - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
114
1152005/12/18 : 1.2.7.1
116 - the "retries" option was ignored because connect() could not return an
117 error if the connection failed before the timeout.
118 - TCP health-checks could not detect a connection refused in poll/epoll
119 mode.
120
willy tarreaua56eca72005-12-18 01:34:42 +01001212005/11/13 : 1.2.7
willy tarreau77bc8542005-12-18 01:31:43 +0100122 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
123 least on Solaris, this caused the libc's regex primitives to be used instead
124 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +0100125 - delayed the quiet mode during startup so that most of the startup alerts can
126 be displayed even in quiet mode.
127 - display an alert when a listener has no address, invalid or no port, or when
128 there are no enabled listeners upon startup.
willy tarreau4373b962005-12-18 01:32:31 +0100129 - added "static-pcre" to the list of supported regex options in the Makefile.
willy tarreau77bc8542005-12-18 01:31:43 +0100130
willy tarreaub952e1d2005-12-18 01:31:20 +01001312005/10/09 : 1.2.7rc (1.1.33rc)
132 - second batch of socklen_t changes.
133 - clean-ups from Cameron Simpson.
134 - because tv_remain() does not know about eternity, using no timeout can
135 make select() spin around a null time-out. Bug reported by Cameron Simpson.
136 - client read timeout was not properly set to eternity initialized after an
137 accept() if it was not set in the config. It remained undetected so long
138 because eternity is 0 and newly allocated pages are zeroed by the system.
139 - do not call get_original_dst() when not in transparent mode.
140 - implemented a workaround for a bug in certain epoll() implementations on
141 linux-2.4 kernels (epoll-lt <= 0.21).
142 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
143
willy tarreauc5f73ed2005-12-18 01:26:38 +01001442005/08/07 : 1.2.6
145 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
146
1472005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +0100148 - added the number of active sessions (proxy/process) in the logs
149
1502005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +0100151 - the time-out fix introduced in 1.1.25 caused a corner case where it was
152 possible for a client to keep a connection maintained regardless of the
153 timeout if the server closed the connection during the HEADER phase,
154 while the client ignored the close request while doing nothing in the
155 other direction. This has been fixed now by ensuring that read timeouts
156 are re-armed when switching to any SHUTW state.
157
1582005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
159 - enhanced error reporting in the logs. Now the proxy will precisely detect
160 various error conditions related to the system and/or process limits, and
161 generate LOG_EMERG logs indicating that a resource has been exhausted.
162 - logs will contain two new characters for the error cause : 'R' indicates
163 a resource exhausted, and 'I' indicates an internal error, though this
164 one should never happen.
165 - server connection timeouts can now be reported in the logs (sC), as well
166 as connections refused because of maxconn limitations (PC).
167
1682005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
169 - new global configuration keyword "ulimit-n" may be used to raise the FD
170 limit to usable values.
171 - a warning is now displayed on startup if the FD limit is lower than the
172 configured maximum number of sockets.
173
1742005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
175 - new configuration keyword "monitor-net" makes it possible to be monitored
176 by external devices which connect to the proxy without being logged nor
177 forwarded to any server. Particularly useful on generic TCPv4 relays.
178
willy tarreau5dffb602005-12-18 01:15:23 +01001792005/06/21 : 1.2.5.2
180 - fixed build on PPC where chars are unsigned by default
181
willy tarreau08dedbe2005-12-18 01:13:48 +01001822005/05/02 : 1.2.5.1
183 - dirty hack to fix a bug introduced with epoll : if we close an FD and
184 immediately reassign it to another session through a connect(), the
185 Prev{Read,Write}Events are not updated, which causes trouble detecting
186 changes, thus leading to many timeouts at high loads.
187
willy tarreau64a3cc32005-12-18 01:13:11 +01001882005/04/30 : 1.2.5 (1.1.31)
189 - changed the runtime argument to disable epoll() to '-de'
190 - changed the runtime argument to disable poll() to '-dp'
191 - added global options 'nopoll' and 'noepoll' to do the same at the
192 configuration level.
193 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
194 support epoll().
195 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
196 - conditionned signals redirection to #ifdef DEBUG_MEMORY
197
willy tarreau1c2ad212005-12-18 01:11:29 +01001982005/04/26 : 1.2.5-pre4
199 - made epoll() support a compile-time option : ENABLE_EPOLL
200 - provided a very little libc replacement for a possibly missing epoll()
201 implementation which can be enabled by -DUSE_MY_EPOLL
202 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
203 The equivalent runtime argument becomes '-P'. A few tests show that it
204 performs like select() with many fds, but slightly slower (certainly
205 because of the higher amount of memory involved).
206 - separated the 3 polling methods and the tasks scheduler into 4 distinct
207 functions which makes the code a lot more modular.
208 - moved some event tables to private static declarations inside the poller
209 functions.
210 - the poller functions can now initialize themselves, run, and cleanup.
211 - changed the runtime argument to enable epoll() to '-E'.
212 - removed buggy epoll_ctl() code in the client_retnclose() function. This
213 function was never meant to remove anything.
214 - fixed a typo which caused glibc to yell about a double free on exit.
215 - removed error checking after epoll_ctl(DEL) because we can never know if
216 the fd is still active or already closed.
217 - added a few entries in the makefile
218
willy tarreauad90a0c2005-12-18 01:09:15 +01002192005/04/25 : 1.2.5-pre3
220 - experimental epoll() support (use temporary '-e' argument)
221
2222005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +0100223 - implemented the HTTP 303 code for error redirection. This forces the
224 browser to fetch the given URI with a GET request. The new keyword for
225 this is 'errorloc303', and a new 'errorloc302' keyword has been created
226 to make them easily distinguishable.
227 - added more controls in the parser for valid use of '\x' sequence.
228 - few fixes from Alex & Klaus
229
willy tarreauad90a0c2005-12-18 01:09:15 +01002302005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +0100231 - fixed a few errors in the documentation
232
2332005/02/13
234 - do not pre-initialize unused file-descriptors before select() anymore.
235
willy tarreau12350152005-12-18 01:03:27 +01002362005/01/22 : 1.2.4
237 - merged Alexander Lazic's and Klaus Wagner's work on application
238 cookie-based persistence. Since this is the first merge, this version is
239 not intended for general use and reports are more than welcome. Some
240 documentation is really needed though.
241
willy tarreau0174f312005-12-18 01:02:42 +01002422005/01/22 : 1.2.3 (1.1.30)
243 - add an architecture guide to the documentation
244 - released without any changes
245
2462004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
247 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
248 compatible with Apache. This limit can be configured in the makefile now.
249 Thanks to Eric Fehr for the checks.
250 - added a per-server "source" option which now makes it possible to bind to
251 a different source for each (potentially identical) server.
252 - changed cookie-based server selection slightly to allow several servers to
253 share a same cookie, thus making it possible to associate backup servers to
254 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
255 - added the cookie 'prefix' mode which makes it possible to use persistence
256 with thin clients which support only one cookie. The server name is prefixed
257 before the application cookie, and restore back.
258 - fixed the order of servers within an instance to match documentation. Now
259 the servers are *really* used in the order of their declaration. This is
260 particularly important when multiple backup servers are in use.
261
willy tarreau4302f492005-12-18 01:00:37 +01002622004/10/18 : 1.2.2 (1.1.29)
263 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
264 option was enabled without the 'tcplog' option.
265 - encode_string() would use hdr_encode_map instead of the map argument.
266
2672004/08/10 : (1.1.29-pre2)
268 - the logged request is now encoded with '#XX' for unprintable characters
269 - new keywords 'capture request header' and 'capture response header' enable
270 logging of arbitrary HTTP headers in requests and responses
271 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
272
willy tarreau982249e2005-12-18 00:57:06 +01002732004/06/06 : 1.2.1 (1.1.28)
274 - added the '-V' command line option to verbosely report errors even though
275 the -q or 'quiet' options are specified. This is useful with '-c'.
276 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +0100277
willy tarreau982249e2005-12-18 00:57:06 +01002782004/06/05 :
279 - added the "logasap" option which produces a log without waiting for the data
280 to be transferred from the server to the client.
281 - added the "httpclose" option which removes any "connection:" header and adds
282 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +0100283 - added the 'checkcache' option which blocks cacheable responses containing
284 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +0100285 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
286 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +0100287
2882004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +0100289 - send an EMERG log when no server is available for a given proxy
290 - added the '-c' command line option to syntactically check the
291 configuration file without starting the service.
292
willy tarreau8a86dbf2005-12-18 00:45:59 +01002932003/11/09 : 1.2.0
294 - the same as 1.1.27 + IPv6 support on the client side
295
willy tarreaufe2c5c12005-12-17 14:14:34 +01002962003/10/27 : 1.1.27
297 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
298 bug : the code still assumed that HTTP requests were the same size as the
299 original ones (22 bytes), and failed if they were not.
300 - added support for pidfiles.
301
willy tarreauc58fc692005-12-17 14:13:08 +01003022003/10/22 : 1.1.26
303 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
304 broke almost all compatibility with POST requests, because the proxy
305 stopped to read anything from the client as soon as it got all of its
306 headers.
307
willy tarreauc1cae632005-12-17 14:12:23 +01003082003/10/15 : 1.1.25
309 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
310 generic TCP proxies, or lighter logs for HTTP proxies.
311 - fixed a time-out condition wrongly reported as client time-out in data
312 phase if the client timeout was lower than the connect timeout times the
313 number of retries.
314
willy tarreau197e8ec2005-12-17 14:10:59 +01003152003/09/21 : 1.1.24
316 - if a client sent a full request then shut its write connection down, then
317 the request was aborted. This case was detected only when using haproxy
318 both as health-check client and as a server.
319 - if 'option httpchk' is used in a 'health' mode server, then responses will
320 change from 'OK' to 'HTTP/1.0 200 OK'.
321 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
322 server response followed by a close could be ignored, and the server seen
323 as failed.
324
willy tarreaueedaa9f2005-12-17 14:08:03 +01003252003/09/19 : 1.1.23
326 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
327 'default' sections to keep previous parameters, and not initialize logs
328 correctly.
329 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
330 relying on 'dispatch' mode to segfault at the first connection.
331 - 'option httpchk' now supports method, HTTP version and a few headers.
332 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
333 'defaults' section
334
3352003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +0100336 - 'listen' now supports optionnal address:port-range lists
337 - 'bind' introduced to add new listen addresses
338 - fixed a bug which caused a session to be kept established on a server till
339 it timed out if the client closed during the DATA phase.
340 - the port part of each server address can now be empty to make the proxy
341 connect to the server on the same port it was connected to, be an absolute
342 unsigned number to reflect a single port (as in older versions), or an
343 explicitly signed number (+N/-N) to indicate that this offset must be
344 applied to the port the proxy was connected to, when connecting to the
345 server.
346 - the 'port' server option allows the user to specify a different
347 health-check port than the service one. It is mandatory when only relative
348 ports have been specified and check is required. By default, the checks are
349 sent to the service port.
350 - new 'defaults' section which is rather similar to 'listen' except that all
351 values are only used as default values for future 'listen' sections, until
352 a new 'defaults' resets them. At the moment, server options, regexes,
353 cookie names and captures cannot be set in the 'defaults' section.
354
willy tarreau2f6ba652005-12-17 13:57:42 +01003552003/05/06 : 1.1.21
356 - changed the debug output format so that it now includes the session unique
357 ID followed by the instance name at the beginning of each line.
358 - in debug mode, accept now shows the client's IP and port.
359 - added one 3 small debugging scripts to search and pretty print debug output
360 - changed the default health check request to "OPTIONS /" instead of
361 "OPTIONS *" since not all servers implement the later one.
362 - "option httpchk" now accepts an optional parameter allowing the user to
363 specify and URI other than '/' during health-checks.
364
willy tarreaub1ff9db2005-12-17 13:51:03 +01003652003/04/21 : 1.1.20
366 - fixed two problems with time-outs, one where a server would be logged as
367 timed out during transfer that take longer to complete than the fixed
368 time-out, and one where clients were logged as timed-out during the data
369 phase because they didn't have anything to send. This sometimes caused
370 slow client connections to close too early while in fact there was no
371 problem. The proper fix would be to have a per-fd time-out with
372 conditions depending on the state of the HTTP FSM.
373
willy tarreau906b2682005-12-17 13:49:52 +01003742003/04/16 : 1.1.19
375 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
376 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
377 cookie persistence because it uses "cookie:". Two memcmp() have been
378 replaced with strncasecmp().
379
willy tarreau036e1ce2005-12-17 13:46:33 +01003802003/04/02 : 1.1.18
381 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
382 REGEX=pcre on the make command line.
383 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
384 - when explicit source address binding is required, it is now also used for
385 health-checks.
386 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
387 itself.
388 - factored several strings to reduce binary size by about 2 kB.
389 - replaced setreuid() and setregid() with more standard setuid() and setgid().
390 - added 4 status flags to the log line indicating who ended the connection
391 first, the sessions state, the validity of the cookie, and action taken on
392 the set-cookie header.
393
3942002/10/18 : 1.1.17
395 - add the notion of "backup" servers, which are used only when all other
396 servers are down.
397 - make Set-Cookie return "" instead of "(null)" when the server has no
398 cookie assigned (useful for backup servers).
399 - "log" now supports an optionnal level name (info, notice, err ...) above
400 which nothing is sent.
401 - replaced some strncmp() with memcmp() for better efficiency.
402 - added "capture cookie" option which logs client and/or server cookies
403 - cleaned up/down messages and dump servers states upon SIGHUP
404 - added a redirection feature for errors : "errorloc <errnum> <url>"
405 - now we won't insist on connecting to a dead server, even with a cookie,
406 unless option "persist" is specified.
407 - added HTTP/408 response for client request time-out and HTTP/50[234] for
408 server reply time-out or errors.
409
4102002/09/01 : 1.1.16
411 - implement HTTP health checks when option "httpchk" is specified.
412
4132002/08/07 : 1.1.15
414 - replaced setpgid()/setpgrp() with setsid() for better portability, because
415 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
416
4172002/07/20 : 1.1.14
418 - added "postonly" cookie mode
419
4202002/07/15 : 1.1.13
421 - tv_diff used inverted parameters which led to negative times !
422
4232002/07/13 : 1.1.12
424 - fixed stats monitoring, and optimized some tv_* for most common cases.
425 - replaced temporary 'newhdr' with 'trash' to reduce stack size
426 - made HTTP errors more HTML-fiendly.
427 - renamed strlcpy() to strlcpy2() because of a slightly difference between
428 their behaviour (return value), to avoid confusion.
429 - restricted HTTP messages to HTTP proxies only
430 - added a 502 message when the connection has been refused by the server,
431 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
432 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
433 inserting a cookie, because some caches (apache) don't understand it.
434 - fixed processing of server headers when client is in SHUTR state
435
4362002/07/04 :
437 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
438 setpgid()
439
4402002/06/04 : 1.1.11
441 - fixed multi-cookie handling in client request to allow clean deletion
442 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +0100443 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +0100444 - added a "nocache" option to "cookie" to specify that we explicitly want
445 to add a "cache-control" header when we add a cookie.
446 It is also possible to add an "Expires: <old-date>" to keep compatibility
447 with old/broken caches.
448
4492002/05/10 : 1.1.10
450 - if a cookie is used in insert+indirect mode, it's desirable that the
451 the servers don't see it. It was not possible to remove it correctly
452 with regexps, so now it's removed automatically.
453
4542002/04/19 : 1.1.9
455 - don't use snprintf()'s return value as an end of message since it may
456 be larger. This caused bus errors and segfaults in internal libc's
457 getenv() during localtime() in send_log().
458 - removed dead insecure send_syslog() function and all references to it.
459 - fixed warnings on Solaris due to buggy implementation of isXXXX().
460
4612002/04/18 : 1.1.8
462 - option "dontlognull"
463 - fixed "double space" bug in config parser
464 - fixed an uninitialized server field in case of dispatch
465 with no existing server which could cause a segfault during
466 logging.
467 - the pid logged was always the father's, which was wrong for daemons.
468 - fixed wrong level "LOG_INFO" for message "proxy started".
469
4702002/04/13 :
471 - http logging is now complete :
472 - ip:port, date, proxy, server
473 - req_time, conn_time, hdr_time, tot_time
474 - status, size, request
475 - source address
476
4772002/04/12 : 1.1.7
478 - added option forwardfor
479 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
480 - added "log global" in "listen" section.
481
4822002/04/09 :
483 - added a new "global" section :
484 - logs
485 - debug, quiet, daemon modes
486 - uid, gid, chroot, nbproc, maxconn
487
4882002/04/08 : 1.1.6
489 - regex are now chained and not limited anymore.
490 - unavailable server now returns HTTP/502.
491 - increased per-line args limit to 40
492 - added reqallow/reqdeny to block some request on matches
493 - added HTTP 400/403 responses
494
4952002/04/03 : 1.1.5
496 - connection logging displayed incorrect source address.
497 - added proxy start/stop and server up/down log events.
498 - replaced log message short buffers with larger trash.
499 - enlarged buffer to 8 kB and replace buffer to 4 kB.
500
5012002/03/25 : 1.1.4
502 - made rise/fall/interval time configurable
503
5042002/03/22 : 1.1.3
505 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
506 which could lead to loops.
507
5082002/03/21 : 1.1.2
509 - fixed a bug in buffer management where we could have a loop
510 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
511 => implemented an adjustable buffer limit.
512 - fixed a bug : expiration of tasks in wait queue timeout is used again,
513 and running tasks are skipped.
514 - added some debug lines for accept events.
515 - send warnings for servers up/down.
516
5172002/03/12 : 1.1.1
518 - fixed a bug in total failure handling
519 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
520
5212002/03/10 : 1.1.0
522 - fixed a few timeout bugs
523 - rearranged the task scheduler subsystem to improve performance,
524 add new tasks, and make it easier to later port to librt ;
525 - allow multiple accept() for one select() wake up ;
526 - implemented internal load balancing with basic health-check ;
527 - cookie insertion and header add/replace/delete, with better strings
528 support.
529
5302002/03/08
531 - reworked buffer handling to fix a few rewrite bugs, and
532 improve overall performance.
533 - implement the "purge" option to delete server cookies in direct mode.
534
5352002/03/07
536 - fixed some error cases where the maxfd was not decreased.
537
5382002/02/26
539 - now supports transparent proxying, at least on linux 2.4.
540
5412002/02/12
542 - soft stop works again (fixed select timeout computation).
543 - it seems that TCP proxies sometimes cannot timeout.
544 - added a "quiet" mode.
545 - enforce file descriptor limitation on socket() and accept().
546
5472001/12/30 : release of version 1.0.2 : fixed a bug in header processing
5482001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
5492001/12/16 : release of version 1.0.0.
5502001/12/16 : added syslog capability for each accepted connection.
5512001/11/19 : corrected premature end of files and occasional SIGPIPE.
5522001/10/31 : added health-check type servers (mode health) which replies OK then closes.
5532001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
554 with or without cookies (use keyword http for this).
5552001/09/01 : added client/server header replacing with regexps.
556 eg:
557 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
558 srvexp ^Server:\ .* Server:\ Apache
5592000/11/29 : first fully working release with complete FSMs and timeouts.
5602000/11/28 : major rewrite
5612000/11/26 : first write