// wwan.h
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;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_IPADDRESS_ENTRY structure represents either the IPV4 or IPV6 address of a PDP context.
IsIpv6Set if the IP address of the PDP context is an IPV6 address.
IsReportedReserved. Do not use.
Ipv4The IPV4 address of the PDP context, if IsIpv6 is not set.
Ipv6The IPV6 address of the PDP context, if IsIpv6 is set.