WWAN_IPADDRESS_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wwan-_wwan_ipaddress_entry)

_WWAN_IPADDRESS_ENTRY structure

Description

The WWAN_IPADDRESS_ENTRY structure represents either the IPV4 or IPV6 address of a PDP context.

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.