mirror of
https://github.com/fluencelabs/musl
synced 2025-06-14 15:31:42 +00:00
TCP_* is in the reserved namespace for tcp.h; make use of that
This commit is contained in:
@ -4,9 +4,6 @@
|
|||||||
#include <features.h>
|
#include <features.h>
|
||||||
|
|
||||||
#define TCP_NODELAY 1
|
#define TCP_NODELAY 1
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#define TCP_MAXSEG 2
|
#define TCP_MAXSEG 2
|
||||||
#define TCP_CORK 3
|
#define TCP_CORK 3
|
||||||
#define TCP_KEEPIDLE 4
|
#define TCP_KEEPIDLE 4
|
||||||
@ -20,6 +17,10 @@
|
|||||||
#define TCP_QUICKACK 12
|
#define TCP_QUICKACK 12
|
||||||
#define TCP_CONGESTION 13
|
#define TCP_CONGESTION 13
|
||||||
#define TCP_MD5SIG 14
|
#define TCP_MD5SIG 14
|
||||||
|
|
||||||
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user