diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-06-20 23:06:04 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-06-20 23:06:04 -0400 |
| commit | edea7a46e5484e30c338699207c8f4b4d8370c97 (patch) | |
| tree | af5d6b5650fe48c56d22a38e54db74e3871c98a8 /lib/std/os | |
| parent | 5229f6ec68708c3e66393a50ad9f9032ee7f4257 (diff) | |
| parent | faf783e5959a09fb2a1680f8bb7558db96dcbed9 (diff) | |
| download | zig-edea7a46e5484e30c338699207c8f4b4d8370c97.tar.gz zig-edea7a46e5484e30c338699207c8f4b4d8370c97.zip | |
Merge branch 'DrDeano-master'
closes #5648
Diffstat (limited to 'lib/std/os')
| -rw-r--r-- | lib/std/os/windows/ws2_32.zig | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/std/os/windows/ws2_32.zig b/lib/std/os/windows/ws2_32.zig index 8b16f54361..1e36a72038 100644 --- a/lib/std/os/windows/ws2_32.zig +++ b/lib/std/os/windows/ws2_32.zig @@ -163,16 +163,16 @@ pub const IPPROTO_UDP = 17; pub const IPPROTO_ICMPV6 = 58; pub const IPPROTO_RM = 113; -pub const AI_PASSIVE = 0x00001; -pub const AI_CANONNAME = 0x00002; -pub const AI_NUMERICHOST = 0x00004; -pub const AI_NUMERICSERV = 0x00008; -pub const AI_ADDRCONFIG = 0x00400; -pub const AI_V4MAPPED = 0x00800; -pub const AI_NON_AUTHORITATIVE = 0x04000; -pub const AI_SECURE = 0x08000; +pub const AI_PASSIVE = 0x00001; +pub const AI_CANONNAME = 0x00002; +pub const AI_NUMERICHOST = 0x00004; +pub const AI_NUMERICSERV = 0x00008; +pub const AI_ADDRCONFIG = 0x00400; +pub const AI_V4MAPPED = 0x00800; +pub const AI_NON_AUTHORITATIVE = 0x04000; +pub const AI_SECURE = 0x08000; pub const AI_RETURN_PREFERRED_NAMES = 0x10000; -pub const AI_DISABLE_IDN_ENCODING = 0x80000; +pub const AI_DISABLE_IDN_ENCODING = 0x80000; pub const FIONBIO = -2147195266; |
