15 lines
214 B
C
15 lines
214 B
C
|
#ifndef __NETINET_TCP_H
|
||
|
#define __NETINET_TCP_H 1
|
||
|
|
||
|
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/netinet_tcp.h.html
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
|
||
|
__BEGIN_DECLS
|
||
|
|
||
|
#define TCP_NODELAY 1
|
||
|
|
||
|
__END_DECLS
|
||
|
|
||
|
#endif
|