diff options
| author | simon <simon@xengames.com> | 2023-10-06 16:41:13 +0100 |
|---|---|---|
| committer | simon <simon@xengames.com> | 2023-10-06 16:41:13 +0100 |
| commit | e7adfff9bf6197a1b8312afe245ae15e6dce7128 (patch) | |
| tree | 029cea4c15f7f700cb38738abf367259ee5bbb67 /core/net/interface_darwin.odin | |
| parent | 98f9f7d42e9a487ea4198ae237465133c6bae120 (diff) | |
bugfix: darwin net flags
Diffstat (limited to 'core/net/interface_darwin.odin')
| -rw-r--r-- | core/net/interface_darwin.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/net/interface_darwin.odin b/core/net/interface_darwin.odin index 54b2a0b3b..59b0e01c5 100644 --- a/core/net/interface_darwin.odin +++ b/core/net/interface_darwin.odin @@ -97,9 +97,9 @@ _enumerate_interfaces :: proc(allocator := context.allocator) -> (interfaces: [] state |= {.Up} } - if .DORMANT in ifaddr.flags { + /*if .DORMANT in ifaddr.flags { state |= {.Dormant} - } + }*/ if .LOOPBACK in ifaddr.flags { state |= {.Loopback} |