Home
last modified time | relevance | path

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

/openthread-latest/include/openthread/
Ddataset.h79 #define OT_NETWORK_NAME_MAX_SIZE 16 ///< Maximum size of the Thread Network Name field (bytes) macro
88 char m8[OT_NETWORK_NAME_MAX_SIZE + 1]; ///< Byte values. The `+ 1` is for null char.
/openthread-latest/src/core/meshcop/
Dnetwork_name.hpp109 static constexpr uint8_t kMaxSize = OT_NETWORK_NAME_MAX_SIZE;
Dmeshcop.cpp315 …en = static_cast<uint8_t>(StringLength(aNetworkName.GetAsCString(), OT_NETWORK_NAME_MAX_SIZE + 1)); in GeneratePskc()
319 (networkNameLen <= OT_NETWORK_NAME_MAX_SIZE), in GeneratePskc()
/openthread-latest/src/ncp/
Dncp_base_mtd.cpp1477 VerifyOrExit(len <= OT_NETWORK_NAME_MAX_SIZE, error = OT_ERROR_INVALID_ARGS); in DecodeOperationalDataset()