blob: 5e5e91e042e2e788b1108d96aceb7589a1515525 [file] [log] [blame]
willy tarreau036e1ce2005-12-17 13:46:33 +01001ChangeLog :
2===========
willy tarreau4302f492005-12-18 01:00:37 +01003
willy tarreaubfad5742006-03-23 14:19:11 +010042006/03/23 : 1.2.10.1
5 - while fixing the backup server round-robin "feature", a new bug was
6 introduced which could miss some backup servers.
7 - the displayed proxy name was wrong when dumping upon SIGHUP.
8
willy tarreauaaff30e2006-03-19 21:30:41 +010092006/03/19 : 1.2.10
10 - assert.h is needed when DEBUG is defined.
11 - ENORMOUS long standing bug affecting the epoll polling system :
12 event_data is a union, not a structure !
13 - Make fd management more robust and easier to debug. Also some
14 micro-optimisations.
15 - Limit the number of consecutive accept() in multi-process mode.
16 This produces a more evenly distributed load across the processes and
17 slightly improves performance by reducing bottlenecks.
18 - Make health-checks be more regular, and faster to retry after a timeout.
19 - Fixed some messages to ease parsing of alerts.
20 - provided a patch to enable epoll on RHEL3 kernels.
21 - Separated OpenBSD build from the main Makefile into a new one.
22
willy tarreau50be0172006-03-15 19:41:19 +0100232006/03/15 : 1.2.9
24 - haproxy could not be stopped after being paused, it had to be woken up
25 first. This has been fixed.
26 - the 'ulimit-n' parameter is now optional and by default computed from
27 maxconn + the number of listeners + the number of health-checks.
28 - it is now possible to specify a maximum number of connections at build
29 time with the SYSTEM_MAXCONN define. The value set in the configuration
30 file will then be limited to this value, and only the command-line '-n'
31 option will be able to bypass it. It will prevent against accidental
32 high memory usage on small systems.
33 - RFC2616 expects that any HTTP agent accepts multi-line headers. Earlier
34 versions did not detect a line beginning with a space as the continuation
35 of previous header. It is now correct.
36 - health checks sent to servers configured with identical intervals were
37 sent in perfect synchronisation because the initial time was the same
38 for all. This could induce high load peaks when fragile servers were
39 hosting tens of instances for the same application. Now the load is
40 spread evenly across the smallest interval amongst a listener.
41 - a new 'forceclose' option was added to make the proxy close the outgoing
42 channel to the server once it has sent all its headers and the server
43 starts responding. This helps some servers which don't close upon the
44 'Connection: close' header. It implies 'option httpclose'.
45 - there was a bug in the way the backup servers were handled. They were
46 erroneously load-balanced while the doc said the opposite. Since
47 load-balanced backup servers is one of the features some people have
48 been asking for, the problem was fixed to reflect the documented
49 behaviour and a new option 'allbackups' was introduced to provide the
50 feature to those who need it.
51 - a never ending connect() could lead to a fast select() loop if its
52 timeout times the number of retransmits exceeded the server read or write
53 timeout, because the later was used to compute select()'s timeout while
54 the connection timeout was not reached.
55 - now we initialize the libc's localtime structures very early so that even
56 under OOM conditions, we can still send dated error messages without
57 segfaulting.
58 - the 'daemon' mode implies 'quiet' and disables 'verbose' because file
59 descriptors are closed.
60
willy tarreau065f1c02006-01-29 22:10:07 +0100612006/01/29 : 1.2.8
62 - fixed a nasty bug affecting poll/epoll which could return unmodified data
63 from the server to the client, and sometimes lead to memory corruption
64 crashing the process.
65 - added the new pause/play mechanism with SIGTTOU/SIGTTIN for hot-reconf.
66
672005/12/18 : 1.2.7.1
68 - the "retries" option was ignored because connect() could not return an
69 error if the connection failed before the timeout.
70 - TCP health-checks could not detect a connection refused in poll/epoll
71 mode.
72
willy tarreaua56eca72005-12-18 01:34:42 +0100732005/11/13 : 1.2.7
willy tarreau77bc8542005-12-18 01:31:43 +010074 - building with -DUSE_PCRE should include PCRE headers and not regex.h. At
75 least on Solaris, this caused the libc's regex primitives to be used instead
76 of PCRE, which caused trouble on group references. This is now fixed.
willy tarreaud0fb4652005-12-18 01:32:04 +010077 - delayed the quiet mode during startup so that most of the startup alerts can
78 be displayed even in quiet mode.
79 - display an alert when a listener has no address, invalid or no port, or when
80 there are no enabled listeners upon startup.
willy tarreau4373b962005-12-18 01:32:31 +010081 - added "static-pcre" to the list of supported regex options in the Makefile.
willy tarreau77bc8542005-12-18 01:31:43 +010082
willy tarreaub952e1d2005-12-18 01:31:20 +0100832005/10/09 : 1.2.7rc (1.1.33rc)
84 - second batch of socklen_t changes.
85 - clean-ups from Cameron Simpson.
86 - because tv_remain() does not know about eternity, using no timeout can
87 make select() spin around a null time-out. Bug reported by Cameron Simpson.
88 - client read timeout was not properly set to eternity initialized after an
89 accept() if it was not set in the config. It remained undetected so long
90 because eternity is 0 and newly allocated pages are zeroed by the system.
91 - do not call get_original_dst() when not in transparent mode.
92 - implemented a workaround for a bug in certain epoll() implementations on
93 linux-2.4 kernels (epoll-lt <= 0.21).
94 - implemented TCP keepalive with new options : tcpka, clitcpka, srvtcpka.
95
willy tarreauc5f73ed2005-12-18 01:26:38 +0100962005/08/07 : 1.2.6
97 - clean-up patch from Alexander Lazic fixes build on Debian 3.1 (socklen_t).
98
992005/07/06 : 1.2.6-pre5 (1.1.32)
willy tarreau0fe39652005-12-18 01:25:24 +0100100 - added the number of active sessions (proxy/process) in the logs
101
1022005/07/06 : 1.2.6-pre4 (1.1.32-pre4)
willy tarreaub1285d52005-12-18 01:20:14 +0100103 - the time-out fix introduced in 1.1.25 caused a corner case where it was
104 possible for a client to keep a connection maintained regardless of the
105 timeout if the server closed the connection during the HEADER phase,
106 while the client ignored the close request while doing nothing in the
107 other direction. This has been fixed now by ensuring that read timeouts
108 are re-armed when switching to any SHUTW state.
109
1102005/07/05 : 1.2.6-pre3 (1.1.32-pre3)
111 - enhanced error reporting in the logs. Now the proxy will precisely detect
112 various error conditions related to the system and/or process limits, and
113 generate LOG_EMERG logs indicating that a resource has been exhausted.
114 - logs will contain two new characters for the error cause : 'R' indicates
115 a resource exhausted, and 'I' indicates an internal error, though this
116 one should never happen.
117 - server connection timeouts can now be reported in the logs (sC), as well
118 as connections refused because of maxconn limitations (PC).
119
1202005/07/05 : 1.2.6-pre2 (1.1.32-pre2)
121 - new global configuration keyword "ulimit-n" may be used to raise the FD
122 limit to usable values.
123 - a warning is now displayed on startup if the FD limit is lower than the
124 configured maximum number of sockets.
125
1262005/07/05 : 1.2.6-pre1 (1.1.32-pre1)
127 - new configuration keyword "monitor-net" makes it possible to be monitored
128 by external devices which connect to the proxy without being logged nor
129 forwarded to any server. Particularly useful on generic TCPv4 relays.
130
willy tarreau5dffb602005-12-18 01:15:23 +01001312005/06/21 : 1.2.5.2
132 - fixed build on PPC where chars are unsigned by default
133
willy tarreau08dedbe2005-12-18 01:13:48 +01001342005/05/02 : 1.2.5.1
135 - dirty hack to fix a bug introduced with epoll : if we close an FD and
136 immediately reassign it to another session through a connect(), the
137 Prev{Read,Write}Events are not updated, which causes trouble detecting
138 changes, thus leading to many timeouts at high loads.
139
willy tarreau64a3cc32005-12-18 01:13:11 +01001402005/04/30 : 1.2.5 (1.1.31)
141 - changed the runtime argument to disable epoll() to '-de'
142 - changed the runtime argument to disable poll() to '-dp'
143 - added global options 'nopoll' and 'noepoll' to do the same at the
144 configuration level.
145 - added a 'linux24e' target to the Makefile for Linux 2.4 systems patched to
146 support epoll().
147 - changed default FD_SETSIZE to 65536 on Solaris (default=1024)
148 - conditionned signals redirection to #ifdef DEBUG_MEMORY
149
willy tarreau1c2ad212005-12-18 01:11:29 +01001502005/04/26 : 1.2.5-pre4
151 - made epoll() support a compile-time option : ENABLE_EPOLL
152 - provided a very little libc replacement for a possibly missing epoll()
153 implementation which can be enabled by -DUSE_MY_EPOLL
154 - implemented the poll() poller, which can be enabled with -DENABLE_POLL.
155 The equivalent runtime argument becomes '-P'. A few tests show that it
156 performs like select() with many fds, but slightly slower (certainly
157 because of the higher amount of memory involved).
158 - separated the 3 polling methods and the tasks scheduler into 4 distinct
159 functions which makes the code a lot more modular.
160 - moved some event tables to private static declarations inside the poller
161 functions.
162 - the poller functions can now initialize themselves, run, and cleanup.
163 - changed the runtime argument to enable epoll() to '-E'.
164 - removed buggy epoll_ctl() code in the client_retnclose() function. This
165 function was never meant to remove anything.
166 - fixed a typo which caused glibc to yell about a double free on exit.
167 - removed error checking after epoll_ctl(DEL) because we can never know if
168 the fd is still active or already closed.
169 - added a few entries in the makefile
170
willy tarreauad90a0c2005-12-18 01:09:15 +01001712005/04/25 : 1.2.5-pre3
172 - experimental epoll() support (use temporary '-e' argument)
173
1742005/04/24 : 1.2.5-pre2
willy tarreauc1f47532005-12-18 01:08:26 +0100175 - implemented the HTTP 303 code for error redirection. This forces the
176 browser to fetch the given URI with a GET request. The new keyword for
177 this is 'errorloc303', and a new 'errorloc302' keyword has been created
178 to make them easily distinguishable.
179 - added more controls in the parser for valid use of '\x' sequence.
180 - few fixes from Alex & Klaus
181
willy tarreauad90a0c2005-12-18 01:09:15 +01001822005/02/17 : 1.2.5-pre1
willy tarreauc1f47532005-12-18 01:08:26 +0100183 - fixed a few errors in the documentation
184
1852005/02/13
186 - do not pre-initialize unused file-descriptors before select() anymore.
187
willy tarreau12350152005-12-18 01:03:27 +01001882005/01/22 : 1.2.4
189 - merged Alexander Lazic's and Klaus Wagner's work on application
190 cookie-based persistence. Since this is the first merge, this version is
191 not intended for general use and reports are more than welcome. Some
192 documentation is really needed though.
193
willy tarreau0174f312005-12-18 01:02:42 +01001942005/01/22 : 1.2.3 (1.1.30)
195 - add an architecture guide to the documentation
196 - released without any changes
197
1982004/12/26 : 1.2.3-pre1 (1.1.30-pre1)
199 - increased default BUFSIZE to 16 kB to accept max headers of 8 kB which is
200 compatible with Apache. This limit can be configured in the makefile now.
201 Thanks to Eric Fehr for the checks.
202 - added a per-server "source" option which now makes it possible to bind to
203 a different source for each (potentially identical) server.
204 - changed cookie-based server selection slightly to allow several servers to
205 share a same cookie, thus making it possible to associate backup servers to
206 live servers and ease soft-stop for maintenance periods. (Alexander Lazic)
207 - added the cookie 'prefix' mode which makes it possible to use persistence
208 with thin clients which support only one cookie. The server name is prefixed
209 before the application cookie, and restore back.
210 - fixed the order of servers within an instance to match documentation. Now
211 the servers are *really* used in the order of their declaration. This is
212 particularly important when multiple backup servers are in use.
213
willy tarreau4302f492005-12-18 01:00:37 +01002142004/10/18 : 1.2.2 (1.1.29)
215 - fixed a bug where a TCP connection would be logged twice if the 'logasap'
216 option was enabled without the 'tcplog' option.
217 - encode_string() would use hdr_encode_map instead of the map argument.
218
2192004/08/10 : (1.1.29-pre2)
220 - the logged request is now encoded with '#XX' for unprintable characters
221 - new keywords 'capture request header' and 'capture response header' enable
222 logging of arbitrary HTTP headers in requests and responses
223 - removed "-DSOLARIS" after replacing the last inet_aton() with inet_pton()
224
willy tarreau982249e2005-12-18 00:57:06 +01002252004/06/06 : 1.2.1 (1.1.28)
226 - added the '-V' command line option to verbosely report errors even though
227 the -q or 'quiet' options are specified. This is useful with '-c'.
228 - added a Red Hat init script and a .spec from Simon Matter <simon.matter@invoca.ch>
willy tarreau036e1ce2005-12-17 13:46:33 +0100229
willy tarreau982249e2005-12-18 00:57:06 +01002302004/06/05 :
231 - added the "logasap" option which produces a log without waiting for the data
232 to be transferred from the server to the client.
233 - added the "httpclose" option which removes any "connection:" header and adds
234 "Connection: close" in both direction.
willy tarreau97f58572005-12-18 00:53:44 +0100235 - added the 'checkcache' option which blocks cacheable responses containing
236 dangerous headers, such as 'set-cookie'.
willy tarreau982249e2005-12-18 00:57:06 +0100237 - added 'rspdeny' and 'rspideny' to block certain responses to avoid sensible
238 information leak from servers.
willy tarreau25c4ea52005-12-18 00:49:49 +0100239
2402004/04/18 :
willy tarreaudd07e972005-12-18 00:48:48 +0100241 - send an EMERG log when no server is available for a given proxy
242 - added the '-c' command line option to syntactically check the
243 configuration file without starting the service.
244
willy tarreau8a86dbf2005-12-18 00:45:59 +01002452003/11/09 : 1.2.0
246 - the same as 1.1.27 + IPv6 support on the client side
247
willy tarreaufe2c5c12005-12-17 14:14:34 +01002482003/10/27 : 1.1.27
249 - the configurable HTTP health check introduced in 1.1.23 revealed a shameful
250 bug : the code still assumed that HTTP requests were the same size as the
251 original ones (22 bytes), and failed if they were not.
252 - added support for pidfiles.
253
willy tarreauc58fc692005-12-17 14:13:08 +01002542003/10/22 : 1.1.26
255 - the fix introduced in 1.1.25 for client timeouts while waiting for servers
256 broke almost all compatibility with POST requests, because the proxy
257 stopped to read anything from the client as soon as it got all of its
258 headers.
259
willy tarreauc1cae632005-12-17 14:12:23 +01002602003/10/15 : 1.1.25
261 - added the 'tcplog' option, which provides enhanced, HTTP-like logs for
262 generic TCP proxies, or lighter logs for HTTP proxies.
263 - fixed a time-out condition wrongly reported as client time-out in data
264 phase if the client timeout was lower than the connect timeout times the
265 number of retries.
266
willy tarreau197e8ec2005-12-17 14:10:59 +01002672003/09/21 : 1.1.24
268 - if a client sent a full request then shut its write connection down, then
269 the request was aborted. This case was detected only when using haproxy
270 both as health-check client and as a server.
271 - if 'option httpchk' is used in a 'health' mode server, then responses will
272 change from 'OK' to 'HTTP/1.0 200 OK'.
273 - fixed a Linux-only bug in case of HTTP server health-checks, where a single
274 server response followed by a close could be ignored, and the server seen
275 as failed.
276
willy tarreaueedaa9f2005-12-17 14:08:03 +01002772003/09/19 : 1.1.23
278 - fixed a stupid bug introduced in 1.1.22 which caused second and subsequent
279 'default' sections to keep previous parameters, and not initialize logs
280 correctly.
281 - fixed a second stupid bug introduced in 1.1.22 which caused configurations
282 relying on 'dispatch' mode to segfault at the first connection.
283 - 'option httpchk' now supports method, HTTP version and a few headers.
284 - now, 'option httpchk', 'cookie' and 'capture' can be specified in
285 'defaults' section
286
2872003/09/10 : 1.1.22
willy tarreaua41a8b42005-12-17 14:02:24 +0100288 - 'listen' now supports optionnal address:port-range lists
289 - 'bind' introduced to add new listen addresses
290 - fixed a bug which caused a session to be kept established on a server till
291 it timed out if the client closed during the DATA phase.
292 - the port part of each server address can now be empty to make the proxy
293 connect to the server on the same port it was connected to, be an absolute
294 unsigned number to reflect a single port (as in older versions), or an
295 explicitly signed number (+N/-N) to indicate that this offset must be
296 applied to the port the proxy was connected to, when connecting to the
297 server.
298 - the 'port' server option allows the user to specify a different
299 health-check port than the service one. It is mandatory when only relative
300 ports have been specified and check is required. By default, the checks are
301 sent to the service port.
302 - new 'defaults' section which is rather similar to 'listen' except that all
303 values are only used as default values for future 'listen' sections, until
304 a new 'defaults' resets them. At the moment, server options, regexes,
305 cookie names and captures cannot be set in the 'defaults' section.
306
willy tarreau2f6ba652005-12-17 13:57:42 +01003072003/05/06 : 1.1.21
308 - changed the debug output format so that it now includes the session unique
309 ID followed by the instance name at the beginning of each line.
310 - in debug mode, accept now shows the client's IP and port.
311 - added one 3 small debugging scripts to search and pretty print debug output
312 - changed the default health check request to "OPTIONS /" instead of
313 "OPTIONS *" since not all servers implement the later one.
314 - "option httpchk" now accepts an optional parameter allowing the user to
315 specify and URI other than '/' during health-checks.
316
willy tarreaub1ff9db2005-12-17 13:51:03 +01003172003/04/21 : 1.1.20
318 - fixed two problems with time-outs, one where a server would be logged as
319 timed out during transfer that take longer to complete than the fixed
320 time-out, and one where clients were logged as timed-out during the data
321 phase because they didn't have anything to send. This sometimes caused
322 slow client connections to close too early while in fact there was no
323 problem. The proper fix would be to have a per-fd time-out with
324 conditions depending on the state of the HTTP FSM.
325
willy tarreau906b2682005-12-17 13:49:52 +01003262003/04/16 : 1.1.19
327 - haproxy was NOT RFC compliant because it was case-sensitive on HTTP
328 "Cookie:" and "Set-Cookie:" headers. This caused JVM 1.4 to fail on
329 cookie persistence because it uses "cookie:". Two memcmp() have been
330 replaced with strncasecmp().
331
willy tarreau036e1ce2005-12-17 13:46:33 +01003322003/04/02 : 1.1.18
333 - Haproxy can be compiled with PCRE regex instead of libc regex, by setting
334 REGEX=pcre on the make command line.
335 - HTTP health-checks now use "OPTIONS *" instead of "OPTIONS /".
336 - when explicit source address binding is required, it is now also used for
337 health-checks.
338 - added 'reqpass' and 'reqipass' to allow certain headers but not the request
339 itself.
340 - factored several strings to reduce binary size by about 2 kB.
341 - replaced setreuid() and setregid() with more standard setuid() and setgid().
342 - added 4 status flags to the log line indicating who ended the connection
343 first, the sessions state, the validity of the cookie, and action taken on
344 the set-cookie header.
345
3462002/10/18 : 1.1.17
347 - add the notion of "backup" servers, which are used only when all other
348 servers are down.
349 - make Set-Cookie return "" instead of "(null)" when the server has no
350 cookie assigned (useful for backup servers).
351 - "log" now supports an optionnal level name (info, notice, err ...) above
352 which nothing is sent.
353 - replaced some strncmp() with memcmp() for better efficiency.
354 - added "capture cookie" option which logs client and/or server cookies
355 - cleaned up/down messages and dump servers states upon SIGHUP
356 - added a redirection feature for errors : "errorloc <errnum> <url>"
357 - now we won't insist on connecting to a dead server, even with a cookie,
358 unless option "persist" is specified.
359 - added HTTP/408 response for client request time-out and HTTP/50[234] for
360 server reply time-out or errors.
361
3622002/09/01 : 1.1.16
363 - implement HTTP health checks when option "httpchk" is specified.
364
3652002/08/07 : 1.1.15
366 - replaced setpgid()/setpgrp() with setsid() for better portability, because
367 setpgrp() doesn't have the same meaning under Solaris, Linux, and OpenBSD.
368
3692002/07/20 : 1.1.14
370 - added "postonly" cookie mode
371
3722002/07/15 : 1.1.13
373 - tv_diff used inverted parameters which led to negative times !
374
3752002/07/13 : 1.1.12
376 - fixed stats monitoring, and optimized some tv_* for most common cases.
377 - replaced temporary 'newhdr' with 'trash' to reduce stack size
378 - made HTTP errors more HTML-fiendly.
379 - renamed strlcpy() to strlcpy2() because of a slightly difference between
380 their behaviour (return value), to avoid confusion.
381 - restricted HTTP messages to HTTP proxies only
382 - added a 502 message when the connection has been refused by the server,
383 to prevent clients from believing this is a zero-byte HTTP 0.9 reply.
384 - changed 'Cache-control:' from 'no-cache="set-cookie"' to 'private' when
385 inserting a cookie, because some caches (apache) don't understand it.
386 - fixed processing of server headers when client is in SHUTR state
387
3882002/07/04 :
389 - automatically close fd's 0,1 and 2 when going daemon ; setpgrp() after
390 setpgid()
391
3922002/06/04 : 1.1.11
393 - fixed multi-cookie handling in client request to allow clean deletion
394 in insert+indirect mode. Now, only the server cookie is deleted and not
willy tarreau906b2682005-12-17 13:49:52 +0100395 all the header. Should now be compliant to RFC2965.
willy tarreau036e1ce2005-12-17 13:46:33 +0100396 - added a "nocache" option to "cookie" to specify that we explicitly want
397 to add a "cache-control" header when we add a cookie.
398 It is also possible to add an "Expires: <old-date>" to keep compatibility
399 with old/broken caches.
400
4012002/05/10 : 1.1.10
402 - if a cookie is used in insert+indirect mode, it's desirable that the
403 the servers don't see it. It was not possible to remove it correctly
404 with regexps, so now it's removed automatically.
405
4062002/04/19 : 1.1.9
407 - don't use snprintf()'s return value as an end of message since it may
408 be larger. This caused bus errors and segfaults in internal libc's
409 getenv() during localtime() in send_log().
410 - removed dead insecure send_syslog() function and all references to it.
411 - fixed warnings on Solaris due to buggy implementation of isXXXX().
412
4132002/04/18 : 1.1.8
414 - option "dontlognull"
415 - fixed "double space" bug in config parser
416 - fixed an uninitialized server field in case of dispatch
417 with no existing server which could cause a segfault during
418 logging.
419 - the pid logged was always the father's, which was wrong for daemons.
420 - fixed wrong level "LOG_INFO" for message "proxy started".
421
4222002/04/13 :
423 - http logging is now complete :
424 - ip:port, date, proxy, server
425 - req_time, conn_time, hdr_time, tot_time
426 - status, size, request
427 - source address
428
4292002/04/12 : 1.1.7
430 - added option forwardfor
431 - added reqirep, reqidel, reqiallow, reqideny, rspirep, rspidel
432 - added "log global" in "listen" section.
433
4342002/04/09 :
435 - added a new "global" section :
436 - logs
437 - debug, quiet, daemon modes
438 - uid, gid, chroot, nbproc, maxconn
439
4402002/04/08 : 1.1.6
441 - regex are now chained and not limited anymore.
442 - unavailable server now returns HTTP/502.
443 - increased per-line args limit to 40
444 - added reqallow/reqdeny to block some request on matches
445 - added HTTP 400/403 responses
446
4472002/04/03 : 1.1.5
448 - connection logging displayed incorrect source address.
449 - added proxy start/stop and server up/down log events.
450 - replaced log message short buffers with larger trash.
451 - enlarged buffer to 8 kB and replace buffer to 4 kB.
452
4532002/03/25 : 1.1.4
454 - made rise/fall/interval time configurable
455
4562002/03/22 : 1.1.3
457 - fixed a bug : cr_expire and cw_expire were inverted in CL_STSHUT[WR]
458 which could lead to loops.
459
4602002/03/21 : 1.1.2
461 - fixed a bug in buffer management where we could have a loop
462 between event_read() and process_{cli|srv} if R==BUFSIZE-MAXREWRITE.
463 => implemented an adjustable buffer limit.
464 - fixed a bug : expiration of tasks in wait queue timeout is used again,
465 and running tasks are skipped.
466 - added some debug lines for accept events.
467 - send warnings for servers up/down.
468
4692002/03/12 : 1.1.1
470 - fixed a bug in total failure handling
471 - fixed a bug in timestamp comparison within same second (tv_cmp_ms)
472
4732002/03/10 : 1.1.0
474 - fixed a few timeout bugs
475 - rearranged the task scheduler subsystem to improve performance,
476 add new tasks, and make it easier to later port to librt ;
477 - allow multiple accept() for one select() wake up ;
478 - implemented internal load balancing with basic health-check ;
479 - cookie insertion and header add/replace/delete, with better strings
480 support.
481
4822002/03/08
483 - reworked buffer handling to fix a few rewrite bugs, and
484 improve overall performance.
485 - implement the "purge" option to delete server cookies in direct mode.
486
4872002/03/07
488 - fixed some error cases where the maxfd was not decreased.
489
4902002/02/26
491 - now supports transparent proxying, at least on linux 2.4.
492
4932002/02/12
494 - soft stop works again (fixed select timeout computation).
495 - it seems that TCP proxies sometimes cannot timeout.
496 - added a "quiet" mode.
497 - enforce file descriptor limitation on socket() and accept().
498
4992001/12/30 : release of version 1.0.2 : fixed a bug in header processing
5002001/12/19 : release of version 1.0.1 : no MSG_NOSIGNAL on solaris
5012001/12/16 : release of version 1.0.0.
5022001/12/16 : added syslog capability for each accepted connection.
5032001/11/19 : corrected premature end of files and occasional SIGPIPE.
5042001/10/31 : added health-check type servers (mode health) which replies OK then closes.
5052001/10/30 : added the ability to support standard TCP proxies and HTTP proxies
506 with or without cookies (use keyword http for this).
5072001/09/01 : added client/server header replacing with regexps.
508 eg:
509 cliexp ^(Host:\ [^:]*).* Host:\ \1:80
510 srvexp ^Server:\ .* Server:\ Apache
5112000/11/29 : first fully working release with complete FSMs and timeouts.
5122000/11/28 : major rewrite
5132000/11/26 : first write