16 lines
357 B
C
16 lines
357 B
C
/*
|
|
* <netinet/tcp.h> for the MontaukOS git port.
|
|
*
|
|
* Socket option names only; setsockopt() itself fails here. See
|
|
* compat/sys/socket.h.
|
|
*/
|
|
#ifndef _MONTAUK_GIT_NETINET_TCP_H_
|
|
#define _MONTAUK_GIT_NETINET_TCP_H_
|
|
|
|
#define TCP_NODELAY 1
|
|
#define TCP_KEEPIDLE 4
|
|
#define TCP_KEEPINTVL 5
|
|
#define TCP_KEEPCNT 6
|
|
|
|
#endif /* _MONTAUK_GIT_NETINET_TCP_H_ */
|