netinet_tcp.odin 288 B

12345678910
  1. #+build linux, darwin, netbsd, openbsd, freebsd
  2. package posix
  3. // netinet/tcp.h - definitions for the Internet Transmission Control Protocol (TCP)
  4. when ODIN_OS == .Darwin || ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD || ODIN_OS == .OpenBSD || ODIN_OS == .Linux {
  5. TCP_NODELAY :: 0x01
  6. }