[RELEASE] released version 1.2.13.1

- an uninitialized field in the struct session could cause a crash when
     the session was freed. This has been encountered on Solaris only.
   - Solaris and OpenBSD no not support shutdown() on listening socket. Let's
     be nice to them by performing a soft stop if pause fails.
This commit is contained in:
Willy TARREAU 2006-05-14 10:00:09 +02:00
parent 007aa4606e
commit 4404b7ebcc
3 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,12 @@
ChangeLog : ChangeLog :
=========== ===========
2006/05/14 : 1.2.13.1
- an uninitialized field in the struct session could cause a crash when
the session was freed. This has been encountered on Solaris only.
- Solaris and OpenBSD no not support shutdown() on listening socket. Let's
be nice to them by performing a soft stop if pause fails.
2006/05/13 : 1.2.13 2006/05/13 : 1.2.13
- 'maxconn' server parameter to do per-server session limitation - 'maxconn' server parameter to do per-server session limitation
- queueing to support non-blocking session limitation - queueing to support non-blocking session limitation

View File

@ -2,7 +2,7 @@
# You should use it this way : # You should use it this way :
# make TARGET=os CPU=cpu # make TARGET=os CPU=cpu
VERSION := 1.2.13 VERSION := 1.2.13.1
# Select target OS. TARGET must match a system for which COPTS and LIBS are # Select target OS. TARGET must match a system for which COPTS and LIBS are
# correctly defined below. # correctly defined below.

View File

@ -89,11 +89,11 @@
#include "include/mini-clist.h" #include "include/mini-clist.h"
#ifndef HAPROXY_VERSION #ifndef HAPROXY_VERSION
#define HAPROXY_VERSION "1.2.13" #define HAPROXY_VERSION "1.2.13.1"
#endif #endif
#ifndef HAPROXY_DATE #ifndef HAPROXY_DATE
#define HAPROXY_DATE "2006/05/13" #define HAPROXY_DATE "2006/05/14"
#endif #endif
/* this is for libc5 for example */ /* this is for libc5 for example */