aboutsummaryrefslogtreecommitdiff
path: root/core/sys/posix/netinet_tcp.odin
blob: b1da12f5e36cd6e90d9c100e8e0d0eed254cd34d (plain)
1
2
3
4
5
6
7
8
9
10
#+build linux, darwin, netbsd, openbsd, freebsd
package posix

// netinet/tcp.h - definitions for the Internet Transmission Control Protocol (TCP)

when ODIN_OS == .Darwin || ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD || ODIN_OS == .OpenBSD || ODIN_OS == .Linux {

	TCP_NODELAY :: 0x01

}