RILNDISIPV6ADDR (Compact 2013)

3/26/2014

This structure encapsulates an IPv6 address.

Syntax

typedef struct rilndisipv6addr_tag {
  union
    {
      UCHAR Byte[IPV6_ADDRESS_LENGTH_IN_UCHAR];
      USHORT Word[IPV6_ADDRESS_LENGTH_IN_USHORT];
    };
} RILNDISIPV6ADDR, *LPRILNDISIPV6ADDR;

Members

  • Byte
    An IPv6 address, represented as an array of unsigned characters. Size is IPV6_ADDRESS_LENGTH_IN_UCHAR, which is defined in terms of another constant: IPV6_ADDRESS_LENGTH= 16.
  • Word
    An IPv6 address, represented as an array of unsigned short integers. Size is IPV6_ADDRESS_LENGTH_IN_USHORT, which is defined in terms of another constant: IPV6_ADDRESS_LENGTH/2 = 8.

Requirements

Header

ril.h

See Also

Reference

RIL Structures

Other Resources

Cellular Radio (CellCore)