pub const STREAM = 1pub const DGRAM = 2pub const RAW = 3pub const RDM = 4pub const SEQPACKET = 5WARNING: 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 = 0x10000WARNING: 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 = 0x20000pub 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;
}