Partager via


FW_IP_ADDRESS

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

Firewall Structures | in_addr | in6_addr

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.