Struct:in6 addr

Jump to: navigation, search
#include trsocket.h
 
struct in6_addr
{
    union 
    {
        u_char  ip6U8[16];
        u_short ip6U16[8];
        u_long  ip6U32[4];
    } ip6Addr;
};
 
#define s6_addr ip6Addr.ip6U8

Structure Description

Refer to [RFC 2553]. Data structure required by the BSD socket API used to represent an IPv6 address.


Members

  • ai_ip6Addr
    128-bit IPv6-formatted address in network byte order.