Home
last modified time | relevance | path

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

/external/openthread/src/core/net/
Dip6_mpl.cpp61 void Mpl::InitOption(OptionMpl &aOption, const Address &aAddress) in InitOption()
69 aOption.SetSeedIdLength(OptionMpl::kSeedIdLength0); in InitOption()
76 aOption.SetSeedIdLength(OptionMpl::kSeedIdLength2); in InitOption()
84 OptionMpl option; in ProcessOption()
86 …VerifyOrExit(aMessage.ReadBytes(aMessage.GetOffset(), &option, sizeof(option)) >= OptionMpl::kMinL… in ProcessOption()
87 (option.GetSeedIdLength() == OptionMpl::kSeedIdLength0 || in ProcessOption()
88 option.GetSeedIdLength() == OptionMpl::kSeedIdLength2), in ProcessOption()
91 if (option.GetSeedIdLength() == OptionMpl::kSeedIdLength0) in ProcessOption()
Dip6_mpl.hpp63 class OptionMpl : public OptionHeader class
204 void InitOption(OptionMpl &aOption, const Address &aAddress);
Dip6.cpp86 …Message::kTypeIp6, sizeof(Header) + sizeof(HopByHopHeader) + sizeof(OptionMpl) + aReserved, aSetti… in NewMessage()
199 OptionMpl mplOption; in AddMplOption()
264 OptionMpl mplOption; in InsertMplOption()
359 case OptionMpl::kType: in RemoveMplOption()
366 … VerifyOrExit(mplLength <= sizeof(OptionMpl) - sizeof(OptionHeader), error = kErrorParse); in RemoveMplOption()
578 case OptionMpl::kType: in HandleOptions()
/external/openthread/src/core/coap/
Dcoap_message.hpp947 …rt(sizeof(HelpData) <= sizeof(Ip6::Header) + sizeof(Ip6::HopByHopHeader) + sizeof(Ip6::OptionMpl) +