Share via


IP_ADAPTER_PREFIX

This structure stores an IP prefix.

typedef struct _IP_ADAPTER_PREFIX {
  union {
    ULONGLONG Alignment;
    struct {
      ULONG Length;
      DWORD Flags;
    };
  };
  struct _IP_ADAPTER_PREFIX* Next;
  SOCKET_ADDRESS Address;
  ULONG PrefixLength;
} IP_ADAPTER_PREFIX, *PIP_ADAPTER_PREFIX;

Members

  • Alignment
    Reserved. Used by the compiler to align the structure.
  • Length
    Length of this structure.
  • Flags
    Index of the IPv4 interface with which these addresses are associated. Contains zero if IPv4 is not available on the interface.
  • Next
    Pointer to the next adapter prefix structure in the list.
  • Address
    Address prefix, in the form of a SOCKET_ADDRESS structure.
  • PrefixLength
    Length of the prefix, in bytes.

Requirements

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

See Also

IPHelper Structures | SOCKET_ADDRESS

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.