From: Sepherosa Ziehau Date: Wed, 19 Aug 2015 12:50:25 +0000 (+0800) Subject: socket: Don't define SS_ISCLOSING same as SS_INCOMP X-Git-Url: https://gitweb.dragonflybsd.org/~nant/dragonfly.git/commitdiff_plain/419e6645610a80c4ad8043e25c5815cb688a57e4 socket: Don't define SS_ISCLOSING same as SS_INCOMP --- diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h index c8aa511376..50ed74f556 100644 --- a/sys/sys/socketvar.h +++ b/sys/sys/socketvar.h @@ -186,10 +186,10 @@ struct socket { #define SS_CANTRCVMORE 0x0020 /* can't receive more data from peer */ #define SS_RCVATMARK 0x0040 /* at mark on input */ +#define SS_ISCLOSING 0x0080 /* in process of closing */ #define SS_ASSERTINPROG 0x0100 /* sonewconn race debugging */ #define SS_ASYNC 0x0200 /* async i/o notify */ #define SS_ISCONFIRMING 0x0400 /* deciding to accept connection req */ -#define SS_ISCLOSING 0x0800 /* in process of closing */ #define SS_INCOMP 0x0800 /* unaccepted, incomplete connection */ #define SS_COMP 0x1000 /* unaccepted, complete connection */