mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-12 06:11:26 -07:00
12 lines
306 B
Odin
12 lines
306 B
Odin
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
|
|
|
|
} else {
|
|
#panic("posix is unimplemented for the current target")
|
|
}
|