WWAN_IPADDRESS_ENTRY structure (wwan.h)
The WWAN_IPADDRESS_ENTRY structure represents either the IPV4 or IPV6 address of a PDP context.
Syntax
typedef struct _WWAN_IPADDRESS_ENTRY {
ULONG IsIpv6 : 1;
ULONG IsReported : 1;
union {
WWAN_IPV4_ADDRESS Ipv4;
WWAN_IPV6_ADDRESS Ipv6;
};
} WWAN_IPADDRESS_ENTRY, *PWWAN_IPADDRESS_ENTRY;
Members
IsIpv6
Set if the IP address of the PDP context is an IPV6 address.
IsReported
Reserved. Do not use.
Ipv4
The IPV4 address of the PDP context, if IsIpv6 is not set.
Ipv6
The IPV6 address of the PDP context, if IsIpv6 is set.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows 8.1 and later versions of Windows. |
Header | wwan.h (include Wwan.h) |