Share via


FW_IP_ADDRESS (Windows CE 5.0)

Send Feedback

This structure specifies the IP address of the host on the private or public side of the firewall.

typedef struct _FW_IP_ADDRESS {  USHORT Family;  union  {  IN6_ADDR AddressIPv6;    IN_ADDR AddressIPv4;  };} FW_IP_ADDRESS, *PFW_IP_ADDRESS;

Members

  • Family
    Address family.
  • AddressIPv6
    IPv6 IP address. This is used when the family is AF_INET6.
  • AddressIPv4
    IPv4 IP address. This is used when the family is AF_INET.

Requirements

OS Versions: Windows CE .NET 4.2 and later.
Header: Fwapi.h.

See Also

IP Firewall Structures | in_addr | in6_addr

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.