]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[CLEANUP] remove the unused SV_STCPEND state
authorwilly tarreau <willy@wtap.(none)>
Fri, 12 May 2006 17:46:40 +0000 (19:46 +0200)
committerwilly tarreau <willy@wtap.(none)>
Fri, 12 May 2006 17:46:40 +0000 (19:46 +0200)
haproxy.c

index eaa6bc183b5ad4470f287f20624e9e567deb42c9..2f5cb04091097bd8398e3079d6f4ac2886b6e62f 100644 (file)
--- a/haproxy.c
+++ b/haproxy.c
@@ -418,13 +418,12 @@ int strlcpy2(char *dst, const char *src, int size) {
 
 /* different possible states for the server side */
 #define SV_STIDLE      0
-#define SV_STCPEND     1
-#define SV_STCONN      2
-#define SV_STHEADERS   3
-#define SV_STDATA      4
-#define SV_STSHUTR     5
-#define SV_STSHUTW     6
-#define SV_STCLOSE     7
+#define SV_STCONN      1
+#define SV_STHEADERS   2
+#define SV_STDATA      3
+#define SV_STSHUTR     4
+#define SV_STSHUTW     5
+#define SV_STCLOSE     6
 
 /* result of an I/O event */
 #define        RES_SILENT      0       /* didn't happen */