struct SOCK [src]

Members

Source

pub const SOCK = struct { pub const STREAM = 1; pub const DGRAM = 2; pub const RAW = 3; pub const RDM = 4; pub const SEQPACKET = 5; /// WARNING: this flag is not supported by windows socket functions directly, /// it is only supported by std.os.socket. Be sure that this value does /// not share any bits with any of the `SOCK` values. pub const CLOEXEC = 0x10000; /// WARNING: this flag is not supported by windows socket functions directly, /// it is only supported by std.os.socket. Be sure that this value does /// not share any bits with any of the `SOCK` values. pub const NONBLOCK = 0x20000; }