diff options
Diffstat (limited to 'include/linux/net.h')
-rw-r--r-- | include/linux/net.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/net.h b/include/linux/net.h index d91b6bcf6..0269a037e 100644 --- a/include/linux/net.h +++ b/include/linux/net.h @@ -53,12 +53,14 @@ typedef enum { SS_DISCONNECTING /* in process of disconnecting */ } socket_state; -#define SO_ACCEPTCON (1<<16) /* performed a listen */ -#define SO_WAITDATA (1<<17) /* wait data to read */ -#define SO_NOSPACE (1<<18) /* no space to write */ +#define __SO_ACCEPTCON (1<<16) /* performed a listen */ #ifdef __KERNEL__ +#define SOCK_ASYNC_NOSPACE 0 +#define SOCK_ASYNC_WAITDATA 1 +#define SOCK_NOSPACE 2 + struct socket { socket_state state; |