in6_addr Structure

C

struct in6_addr {
    union {
        uint8_t u6_addr8[16];
        uint16_t u6_addr16[8];
        uint32_t u6_addr32[4];
    } in6_u;
};

Description

This is record in6_addr.

Members

MembersDescription
u6_addr8[16]IP address in Bytes.
u6_addr16[8]IP address in 16 bit Words.
u6_addr32[4]IP address in 32 bit Words.