16 lines
236 B
C
16 lines
236 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
|
|
#define TCP_MAXSEG 2
|
|
|
|
__END_DECLS
|
|
|
|
#endif
|