OverSim
IPv6Words Struct Reference

Structure to manipulate IPv6 addresses easily. More...

#include <AccessNet.h>

Public Member Functions

 IPv6Words (IPvXAddress addr)
 IPv6Words ()

Public Attributes

uint32 d0
uint32 d1
uint32 d2
uint32 d3

Detailed Description

Structure to manipulate IPv6 addresses easily.

Definition at line 42 of file AccessNet.h.

Constructor & Destructor Documentation

IPv6Words::IPv6Words ( IPvXAddress  addr)
inline

Definition at line 47 of file AccessNet.h.

{
const uint32* words = addr.words();
d0 = words[0];
d1 = words[1];
d2 = words[2];
d3 = words[3];
}
IPv6Words::IPv6Words ( )
inline

Definition at line 55 of file AccessNet.h.

{
d0 = 0;
d1 = 0;
d2 = 0;
d3 = 0;
}

Member Data Documentation

uint32 IPv6Words::d0
uint32 IPv6Words::d1
uint32 IPv6Words::d2
uint32 IPv6Words::d3

The documentation for this struct was generated from the following file: