ESP-IDF
ot::Ip6::Header::mVerTcFlow
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
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::mVerTcFlow
ot::Ip6::Header::mVerTcFlow field
Syntax
Show:
Summary
Declaration
from
ip6_headers.hpp:329
union
OT_TOOL_PACKED_FIELD
{
uint8_t
m8
[
sizeof
(
uint32_t
)
/
sizeof
(
uint8_t
)
]
;
uint16_t
m16
[
sizeof
(
uint32_t
)
/
sizeof
(
uint16_t
)
]
;
uint32_t
m32
;
}
mVerTcFlow
;
Examples
References
from
examples
Code
Location
Scope
Referrer
}
mVerTcFlow
;
ip6_headers.hpp:334
bool
IsVersion6
(
void
)
const
{
return
(
mVerTcFlow
.
m8
[
0
]
&
kVersionMask
)
==
kVersion6
;
}
ip6_headers.hpp:118
ot::Ip6::Header
ot::Ip6::Header::IsVersion6() const
uint32_t
GetVerionTrafficClassFlow
(
void
)
const
{
return
BigEndian
::
HostSwap32
(
mVerTcFlow
.
m32
)
;
}
ip6_headers.hpp:125
ot::Ip6::Header
ot::Ip6::Header::GetVerionTrafficClassFlow() const
void
SetVerionTrafficClassFlow
(
uint32_t
aVerTcFlow
)
{
mVerTcFlow
.
m32
=
BigEndian
::
HostSwap32
(
aVerTcFlow
)
;
}
ip6_headers.hpp:132
ot::Ip6::Header
ot::Ip6::Header::SetVerionTrafficClassFlow()
return
static_cast
<
uint8_t
>
(
(
BigEndian
::
HostSwap16
(
mVerTcFlow
.
m16
[
0
]
)
&
kTrafficClassMask
)
>
>
ip6_headers.hpp:141
ot::Ip6::Header
ot::Ip6::Header::GetTrafficClass() const
mVerTcFlow
.
m16
[
0
]
=
ip6_headers.hpp:152
ot::Ip6::Header
ot::Ip6::Header::SetTrafficClass()
BigEndian
::
HostSwap16
(
(
BigEndian
::
HostSwap16
(
mVerTcFlow
.
m16
[
0
]
)
&
~
kTrafficClassMask
)
|
ip6_headers.hpp:153
ot::Ip6::Header
ot::Ip6::Header::SetTrafficClass()
return
static_cast
<
uint8_t
>
(
(
BigEndian
::
HostSwap16
(
mVerTcFlow
.
m16
[
0
]
)
&
kDscpMask
)
>
>
kDscpOffset
)
;
ip6_headers.hpp:164
ot::Ip6::Header
ot::Ip6::Header::GetDscp() const
mVerTcFlow
.
m16
[
0
]
=
BigEndian
::
HostSwap16
(
(
BigEndian
::
HostSwap16
(
mVerTcFlow
.
m16
[
0
]
)
&
~
kDscpMask
)
|
ip6_headers.hpp:174
ot::Ip6::Header
ot::Ip6::Header::SetDscp()
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()
uint32_t
GetFlow
(
void
)
const
{
return
BigEndian
::
HostSwap32
(
mVerTcFlow
.
m32
)
&
kFlowMask
;
}
ip6_headers.hpp:197
ot::Ip6::Header
ot::Ip6::Header::GetFlow() const
mVerTcFlow
.
m32
=
ip6_headers.hpp:206
ot::Ip6::Header
ot::Ip6::Header::SetFlow()
BigEndian
::
HostSwap32
(
(
BigEndian
::
HostSwap32
(
mVerTcFlow
.
m32
)
&
~
kFlowMask
)
|
(
aFlow
&
kFlowMask
)
)
;
ip6_headers.hpp:207
ot::Ip6::Header
ot::Ip6::Header::SetFlow()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Ip6::Header::mVerTcFlow
is read by 11 functions:
All items filtered out
ot::Ip6::Header::mVerTcFlow
ot::Ip6::Header::IsVersion6() const
ot::Ip6::Header::GetVerionTrafficClassFlow() const
ot::Ip6::Header::SetVerionTrafficClassFlow()
ot::Ip6::Header::GetTrafficClass() const
ot::Ip6::Header::SetTrafficClass()
ot::Ip6::Header::GetDscp() const
ot::Ip6::Header::SetDscp()
ot::Ip6::Header::GetEcn() const
ot::Ip6::Header::SetEcn()
ot::Ip6::Header::GetFlow() const
ot::Ip6::Header::SetFlow()
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