[CLEANUP] remove the unused SV_STCPEND state

This commit is contained in:
willy tarreau 2006-05-12 19:46:40 +02:00
parent 59a6cc2d73
commit 9fea194154

View File

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