mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-29 23:25:09 +00:00
11 lines
288 B
Odin
11 lines
288 B
Odin
#+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
|
|
|
|
}
|