Type TCP [src]

Members

Source

pub const TCP = switch (native_os) { .macos => darwin.TCP, .linux => linux.TCP, .emscripten => emscripten.TCP, .windows => ws2_32.TCP, // https://github.com/SerenityOS/serenity/blob/61ac554a3403838f79ca746bd1c65ded6f97d124/Kernel/API/POSIX/netinet/tcp.h#L13-L14 .serenity => struct { pub const NODELAY = 10; pub const MAXSEG = 11; }, else => void, }