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