Home
last modified time | relevance | path

Searched refs:GetEcn (Results 1 – 10 of 10) sorted by relevance

/openthread-3.5.0/tests/unit/
Dtest_ip4_header.cpp43 printf("%02x {dscp:%d, ecn:%d}\n", aHeader.GetDscpEcn(), aHeader.GetDscp(), aHeader.GetEcn()); in VerifyEcnDscp()
46 VerifyOrQuit(aHeader.GetEcn() == aEcn); in VerifyEcnDscp()
Dtest_ip6_header.cpp45 aHeader.GetEcn(), aHeader.GetFlow()); in VerifyVersionTcFlow()
49 VerifyOrQuit(aHeader.GetEcn() == aEcn); in VerifyVersionTcFlow()
Dtest_lowpan.cpp208 VerifyOrQuit(ecn == aVector.GetIpHeader().GetEcn()); in Test()
/openthread-3.5.0/src/core/net/
Dip6.hpp525 Ecn GetEcn(void) const { return mIp6Header.GetEcn(); } in GetEcn() function in ot::Ip6::Headers
Dsocket.hpp213 Ecn GetEcn(void) const { return static_cast<Ecn>(mEcn); } in GetEcn() function in ot::Ip6::MessageInfo
Dip4_types.hpp373 Ecn GetEcn(void) const { return static_cast<Ecn>(mDscpEcn & kEcnMask); } in GetEcn() function in ot::Ip4::Header
Dip6_headers.hpp198 Ecn GetEcn(void) const { return static_cast<Ecn>((mVerTcFlow.m8[1] & kEcnMask) >> kEcnOffset); } in GetEcn() function in ot::Ip6::Header
Dip6.cpp434 header.SetEcn(aMessageInfo.GetEcn()); in SendDatagram()
1139 messageInfo.SetEcn(header.GetEcn()); in HandleDatagram()
/openthread-3.5.0/src/core/thread/
Dmesh_forwarder.cpp278 isEcnCapable = (ip6Header.GetEcn() != Ip6::kEcnNotCapable); in UpdateEcnOrDrop()
287 switch (ip6Header.GetEcn()) in UpdateEcnOrDrop()
1919 headers.GetChecksum(), Ip6::Ip6::EcnToString(headers.GetEcn()), in LogIp6Message()
Dmesh_forwarder_ftd.cpp995 …headers.GetChecksum(), Ip6::Ip6::EcnToString(headers.GetEcn()), MessagePriorityToString(aMessage)); in LogMeshIpHeader()