unix: fix colliding flag value

Fixes #1425
This commit is contained in:
Saúl Ibarra Corretgé 2014-08-18 10:14:21 +02:00
parent df8ab507a0
commit fdbc8567af

View File

@ -143,7 +143,7 @@ enum {
UV_TCP_NODELAY = 0x400, /* Disable Nagle. */
UV_TCP_KEEPALIVE = 0x800, /* Turn on keep-alive. */
UV_TCP_SINGLE_ACCEPT = 0x1000, /* Only accept() when idle. */
UV_HANDLE_IPV6 = 0x2000 /* Handle is bound to a IPv6 socket. */
UV_HANDLE_IPV6 = 0x10000 /* Handle is bound to a IPv6 socket. */
};
typedef enum {