IP_ADAPTER_PREFIX (Windows CE 5.0)

Send Feedback

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

IP Helper Structures | SOCKET_ADDRESS

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.