Home
last modified time | relevance | path

Searched refs:MplOption (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/net/
Dip6_mpl.cpp51 void MplOption::Init(SeedIdLength aSeedIdLength) in Init()
70 void Mpl::InitOption(MplOption &aOption, const Address &aAddress) in InitOption()
75 aOption.Init(MplOption::kSeedIdLength0); in InitOption()
79 aOption.Init(MplOption::kSeedIdLength2); in InitOption()
89 MplOption option; in ProcessOption()
93 SuccessOrExit(error = aMessage.Read(aOffsetRange, &option, MplOption::kMinSize)); in ProcessOption()
97 case MplOption::kSeedIdLength0: in ProcessOption()
103 case MplOption::kSeedIdLength2: in ProcessOption()
107 case MplOption::kSeedIdLength8: in ProcessOption()
108 case MplOption::kSeedIdLength16: in ProcessOption()
Dip6_mpl.hpp62 class MplOption : public Option class
171 void InitOption(MplOption &aOption, const Address &aAddress);
Dip6.cpp76 …Message::kTypeIp6, sizeof(Header) + sizeof(HopByHopHeader) + sizeof(MplOption) + aReserved, aSetti… in NewMessage()
166 MplOption mplOption; in AddMplOption()
248 MplOption mplOption; in InsertMplOption()
327 if (option.GetType() == MplOption::kType) in RemoveMplOption()
338 VerifyOrExit(option.GetSize() <= sizeof(MplOption), error = kErrorParse); in RemoveMplOption()
529 if (option.GetType() == MplOption::kType) in HandleOptions()
/openthread-latest/src/core/coap/
Dcoap_message.hpp905 …rt(sizeof(HelpData) <= sizeof(Ip6::Header) + sizeof(Ip6::HopByHopHeader) + sizeof(Ip6::MplOption) +