WWAN_IP_CONFIGURATION_FLAGS union (wwan.h)
The WWAN_IP_CONFIGURATION_FLAGS structure represents flags that describe the availability of the IP address, gateway, DNS server, and/or MTU information of a PDP context.
Syntax
typedef union {
ULONG Value;
struct {
ULONG AddressAvailable : 1;
ULONG GatewayAvailable : 1;
ULONG DnsServerAvailable : 1;
ULONG MTUAvailable : 1;
};
} WWAN_IP_CONFIGURATION_FLAGS;
Members
Value
Reserved. Do not use.
AddressAvailable
An address is available.
GatewayAvailable
A gateway is available.
DnsServerAvailable
A DNS server is available.
MTUAvailable
An MTU is available.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows 8.1 and later versions of Windows. |
Header | wwan.h (include Wwan.h) |