bitflag enum io.NetworkAdapterFlags
Overview
This enumeration specifies flag properties of the network adapter. More…
bitflag enum NetworkAdapterFlags { Dhcp, Ddns, Broadcast, Multicast, Ip4, Ip6, };
Detailed Documentation
This enumeration specifies flag properties of the network adapter.
When enumerating available network adapter you first call
io.enumerateNetworkAdapters
, then iterate through the resulting list
of io.NetworkAdapterDesc
structures, each contains a set of flag
properties in io.NetworkAdapterDesc.m_flags
field.
See also:
io.enumerateNetworkAdapters
, io.NetworkAdapterDesc
Enum Values
Dhcp
DHCP
(Dynamic Host Configuration Protocol) is enabled on this
adapter.
Ddns
DDNS
(Dynamic DNS) is enabled on this adapter.
Broadcast
This adapter supports broadcast.
Multicast
This adapter supports multicast.
Ip4
IPv4
is enabled on this adapter.
Ip6
IPv6
is enabled on this adapter.