Share via


IP_ADAPTER_PREFIX

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure stores an IP prefix.

Syntax

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

Header iptypes.h
Windows Embedded CE Windows CE .NET 4.2 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

IP Helper Structures
SOCKET_ADDRESS