ESP-IDF
ot::Dhcp6::IaNa
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Methods
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Dhcp6::IaNa
ot::Dhcp6::IaNa class
Syntax
Show:
Summary
Declaration
from
dhcp6.hpp:380
class
IaNa
:
public
Option
{
public
:
static
constexpr
uint32_t
kDefaultT1
=
0xffffffffU
;
static
constexpr
uint32_t
kDefaultT2
=
0xffffffffU
;
void
Init
(
void
)
{
SetCode
(
kOptionIaNa
)
;
SetLength
(
sizeof
(
*
this
)
-
sizeof
(
Option
)
)
;
}
uint32_t
GetIaid
(
void
)
const
{
return
BigEndian
::
HostSwap32
(
mIaid
)
;
}
void
SetIaid
(
uint32_t
aIaid
)
{
mIaid
=
BigEndian
::
HostSwap32
(
aIaid
)
;
}
uint32_t
GetT1
(
void
)
const
{
return
BigEndian
::
HostSwap32
(
mT1
)
;
}
void
SetT1
(
uint32_t
aT1
)
{
mT1
=
BigEndian
::
HostSwap32
(
aT1
)
;
}
uint32_t
GetT2
(
void
)
const
{
return
BigEndian
::
HostSwap32
(
mT2
)
;
}
void
SetT2
(
uint32_t
aT2
)
{
mT2
=
BigEndian
::
HostSwap32
(
aT2
)
;
}
private
:
uint32_t
mIaid
;
uint32_t
mT1
;
uint32_t
mT2
;
}
;
Fields
Field
Declared as
ot::Dhcp6::IaNa::kDefaultT1
ot::Dhcp6::IaNa::kDefaultT2
ot::Dhcp6::IaNa::mIaid
uint32_t
ot::Dhcp6::IaNa::mT1
uint32_t
ot::Dhcp6::IaNa::mT2
uint32_t
Methods
Init()
Initializes the DHCPv6 Option.
GetIaid() const
Returns client IAID.
SetIaid()
Sets the client IAID.
GetT1() const
Returns T1.
SetT1()
Sets the value of T1.
GetT2() const
Returns T2.
SetT2()
Sets the value of T2.
Related Functions
Found 3 other functions taking a
IaNa
argument:
Function
ot::Dhcp6::Server::AppendIaNa()
ot::Dhcp6::Server::ProcessIaNa()
ot::Dhcp6::Server::SendReply()
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out