ESP-IDF
ot::Ip6::Header::kEcnMask
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Ip6::Header::kEcnMask
ot::Ip6::Header::kEcnMask variable
Syntax
Show:
Summary
Declaration
from
ip6_headers.hpp:325
static
constexpr
uint8_t
kEcnMask
=
0x30
;
Examples
References
from
examples
Code
Location
Scope
Referrer
static
constexpr
uint8_t
kEcnMask
=
0x30
;
// Use with `mVerTcFlow.m8[1]`
ip6_headers.hpp:325
Ecn
GetEcn
(
void
)
const
{
return
static_cast
<
Ecn
>
(
(
mVerTcFlow
.
m8
[
1
]
&
kEcnMask
)
>
>
kEcnOffset
)
;
}
ip6_headers.hpp:183
ot::Ip6::Header
ot::Ip6::Header::GetEcn() const
void
SetEcn
(
Ecn
aEcn
)
{
mVerTcFlow
.
m8
[
1
]
=
(
mVerTcFlow
.
m8
[
1
]
&
~
kEcnMask
)
|
(
(
aEcn
<
<
kEcnOffset
)
&
kEcnMask
)
;
}
ip6_headers.hpp:190
ot::Ip6::Header
ot::Ip6::Header::SetEcn()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Ip6::Header::kEcnMask
is read by 2 functions:
All items filtered out
ot::Ip6::Header::kEcnMask
ot::Ip6::Header::GetEcn() const
ot::Ip6::Header::SetEcn()
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