Share via


2.2.1.2.10 IN6_ADDR

The IN6_ADDR structure represents an IPv6 address.

 typedef struct in6_addr {
   union {
     UCHAR Byte[16];
     USHORT Word[8];
   } u;
 } IN6_ADDR,
  *PIN6_ADDR,
  *LPIN6_ADDR;

Byte: An IPv6 address represented as an array of 16 UCHAR values.

Word: An IPv6 address represented as an array of USHORT values.