]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[RELEASE] released version 1.2.13.1 v1.2.13.1
authorWilly TARREAU <willy@pcw.(none)>
Sun, 14 May 2006 08:00:09 +0000 (10:00 +0200)
committerWilly TARREAU <willy@pcw.(none)>
Sun, 14 May 2006 08:00:09 +0000 (10:00 +0200)
   - 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.

CHANGELOG
Makefile
haproxy.c

index e9d07910f8e25db2d310380f85470284ae048d3d..93aad4e5f7dfd80621739db276b8f9befd9490f1 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,12 @@
 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
    - 'maxconn' server parameter to do per-server session limitation
    - queueing to support non-blocking session limitation
index 40f135fe678b1bb45b61dc6a30e09e6bbdcb1e5c..63e2316db7af777a46857d6bb8d62755a629dfe2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 # You should use it this way :
 #   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
 # correctly defined below.
index 2372c6b0b5388493c4a2647f901884c6fef739fe..b09ae3c622120531dd72a1fdc8151b044ffaf027 100644 (file)
--- a/haproxy.c
+++ b/haproxy.c
 #include "include/mini-clist.h"
 
 #ifndef HAPROXY_VERSION
-#define HAPROXY_VERSION "1.2.13"
+#define HAPROXY_VERSION "1.2.13.1"
 #endif
 
 #ifndef HAPROXY_DATE
-#define HAPROXY_DATE   "2006/05/13"
+#define HAPROXY_DATE   "2006/05/14"
 #endif
 
 /* this is for libc5 for example */