mirror of
https://github.com/espressif/openthread.git
synced 2026-07-05 20:00:23 +00:00
9b8d5b7471
This commit introduces a new `plattcp` CLI command designed primarily for testing and evaluating `otPlatTcp` platform implementations. The new CLI provides commands to manually drive the platform TCP API. These commands act as a thin wrapper around the `Ip6::PlatTcp` classes, allowing to manually invoke and observe connection events, states, and data reception from a console. The feature is guarded by `OPENTHREAD_CONFIG_CLI_PLAT_TCP_ENABLE`.
503 lines
17 KiB
C++
503 lines
17 KiB
C++
/*
|
|
* Copyright (c) 2016, The OpenThread Authors.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the copyright holder nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* This file contains definitions for the CLI interpreter.
|
|
*/
|
|
|
|
#ifndef OT_CLI_CLI_HPP_
|
|
#define OT_CLI_CLI_HPP_
|
|
|
|
#include "openthread-core-config.h"
|
|
|
|
#include "cli_config.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <openthread/border_agent.h>
|
|
#include <openthread/cli.h>
|
|
#include <openthread/dataset.h>
|
|
#include <openthread/dns_client.h>
|
|
#include <openthread/instance.h>
|
|
#include <openthread/ip6.h>
|
|
#include <openthread/link.h>
|
|
#include <openthread/logging.h>
|
|
#include <openthread/netdata.h>
|
|
#include <openthread/ping_sender.h>
|
|
#include <openthread/sntp.h>
|
|
#include <openthread/tcp.h>
|
|
#include <openthread/thread.h>
|
|
#include <openthread/thread_ftd.h>
|
|
#include <openthread/udp.h>
|
|
|
|
#include "cli/cli_ba.hpp"
|
|
#include "cli/cli_bbr.hpp"
|
|
#include "cli/cli_br.hpp"
|
|
#include "cli/cli_coap.hpp"
|
|
#include "cli/cli_coap_secure.hpp"
|
|
#include "cli/cli_commissioner.hpp"
|
|
#include "cli/cli_config.h"
|
|
#include "cli/cli_dataset.hpp"
|
|
#include "cli/cli_dns.hpp"
|
|
#include "cli/cli_history.hpp"
|
|
#include "cli/cli_joiner.hpp"
|
|
#include "cli/cli_link_metrics.hpp"
|
|
#include "cli/cli_mac_filter.hpp"
|
|
#include "cli/cli_mdns.hpp"
|
|
#include "cli/cli_mesh_diag.hpp"
|
|
#include "cli/cli_network_data.hpp"
|
|
#include "cli/cli_ping.hpp"
|
|
#include "cli/cli_plat_tcp.hpp"
|
|
#include "cli/cli_srp_client.hpp"
|
|
#include "cli/cli_srp_server.hpp"
|
|
#include "cli/cli_tcat.hpp"
|
|
#include "cli/cli_tcp.hpp"
|
|
#include "cli/cli_udp.hpp"
|
|
#include "cli/cli_utils.hpp"
|
|
|
|
#include "common/array.hpp"
|
|
#include "common/code_utils.hpp"
|
|
#include "common/debug.hpp"
|
|
#include "common/type_traits.hpp"
|
|
#include "instance/instance.hpp"
|
|
|
|
typedef struct otCliInterpreter
|
|
{
|
|
} otCliInterpreter;
|
|
|
|
namespace ot {
|
|
|
|
/**
|
|
*
|
|
* @brief
|
|
* This namespace contains definitions for the CLI interpreter.
|
|
*/
|
|
namespace Cli {
|
|
|
|
extern "C" void otCliPlatLogv(otLogLevel, otLogRegion, const char *, va_list);
|
|
extern "C" void otCliAppendResult(otError aError);
|
|
extern "C" void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
|
|
extern "C" void otCliOutputFormat(const char *aFmt, ...);
|
|
|
|
/**
|
|
* Implements the CLI interpreter.
|
|
*/
|
|
class Interpreter : public otCliInterpreter, public OutputImplementer, public Utils
|
|
{
|
|
#if OPENTHREAD_FTD || OPENTHREAD_MTD
|
|
friend class Ba;
|
|
friend class Br;
|
|
friend class Bbr;
|
|
friend class Commissioner;
|
|
friend class Dns;
|
|
friend class Joiner;
|
|
friend class History;
|
|
friend class LinkMetrics;
|
|
friend class Mdns;
|
|
friend class MeshDiag;
|
|
friend class NetworkData;
|
|
friend class PingSender;
|
|
friend class SrpClient;
|
|
friend class SrpServer;
|
|
#endif
|
|
friend class Utils;
|
|
|
|
friend void otCliPlatLogv(otLogLevel, otLogRegion, const char *, va_list);
|
|
friend void otCliAppendResult(otError aError);
|
|
friend void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
|
|
friend void otCliOutputFormat(const char *aFmt, ...);
|
|
|
|
public:
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param[in] aInstance The OpenThread instance structure.
|
|
* @param[in] aCallback A callback method called to process CLI output.
|
|
* @param[in] aContext A user context pointer.
|
|
*/
|
|
explicit Interpreter(Instance *aInstance, otCliOutputCallback aCallback, void *aContext);
|
|
|
|
#if OPENTHREAD_CONFIG_CLI_STATIC_INTERPRETER_ENABLE
|
|
/**
|
|
* Returns a reference to the static CLI interpreter.
|
|
*
|
|
* @returns A reference to the static CLI interpreter.
|
|
*/
|
|
static Interpreter &GetInterpreter(void)
|
|
{
|
|
OT_ASSERT(sInterpreter != nullptr);
|
|
return *sInterpreter;
|
|
}
|
|
|
|
/**
|
|
* Initializes the static CLI interpreter.
|
|
*
|
|
* @param[in] aInstance The OpenThread instance structure.
|
|
* @param[in] aCallback A pointer to a callback method.
|
|
* @param[in] aContext A pointer to a user context.
|
|
*/
|
|
static void Init(otInstance *aInstance, otCliOutputCallback aCallback, void *aContext);
|
|
|
|
/**
|
|
* Returns whether the static CLI interpreter is initialized.
|
|
*
|
|
* @returns Whether the interpreter is initialized.
|
|
*/
|
|
static bool IsInitialized(void) { return sInterpreter != nullptr; }
|
|
|
|
#endif // OPENTHREAD_CONFIG_CLI_STATIC_INTERPRETER_ENABLE
|
|
|
|
/**
|
|
* Gets the size of the CLI interpreter object.
|
|
*
|
|
* @returns The size of the CLI interpreter object in bytes.
|
|
*/
|
|
static size_t GetSize(void);
|
|
|
|
/**
|
|
* Initializes a CLI interpreter.
|
|
*
|
|
* @param[in] aBuffer A pointer to a memory buffer for the CLI interpreter.
|
|
* @param[in] aSize The size of the memory buffer.
|
|
* @param[in] aInstance The OpenThread instance structure.
|
|
* @param[in] aCallback A callback method called to process CLI output.
|
|
* @param[in] aContext A user context pointer.
|
|
*
|
|
* @returns A pointer to the initialized CLI interpreter, or `nullptr` if @p aSize is too small.
|
|
*/
|
|
static Interpreter *Init(void *aBuffer,
|
|
size_t aSize,
|
|
otInstance *aInstance,
|
|
otCliOutputCallback aCallback,
|
|
void *aContext);
|
|
|
|
/**
|
|
* Finalizes the CLI interpreter.
|
|
*/
|
|
void Finalize(void);
|
|
|
|
/**
|
|
* Interprets a CLI command.
|
|
*
|
|
* @param[in] aLine A pointer to a command string.
|
|
*/
|
|
void ProcessLine(char *aLine);
|
|
|
|
/**
|
|
* Adds commands to the user command table.
|
|
*
|
|
* @param[in] aCommands A pointer to an array with user commands.
|
|
* @param[in] aLength @p aUserCommands length.
|
|
* @param[in] aContext Context to use when invoking the command handler.
|
|
*
|
|
* @retval OT_ERROR_NONE Successfully updated command table with commands from @p aCommands.
|
|
* @retval OT_ERROR_NO_BUFS No available `UserCommandsEntry` to register the requested user commands.
|
|
*/
|
|
otError SetUserCommands(const otCliCommand *aCommands, uint8_t aLength, void *aContext);
|
|
|
|
#if OPENTHREAD_CONFIG_CLI_PROMPT_ENABLE
|
|
/**
|
|
* Configures whether or not the CLI interpreter outputs prompt string.
|
|
*
|
|
* It is enabled by default.
|
|
*
|
|
* @param[in] aEnabled TRUE to enable outputting prompt, FALSE to disable.
|
|
*/
|
|
void SetPromptConfig(bool aEnabled);
|
|
#endif
|
|
|
|
protected:
|
|
#if OPENTHREAD_CONFIG_CLI_STATIC_INTERPRETER_ENABLE
|
|
static Interpreter *sInterpreter;
|
|
#endif
|
|
|
|
private:
|
|
static constexpr uint8_t kIndentSize = 4;
|
|
static constexpr uint16_t kMaxArgs = 32;
|
|
static constexpr uint16_t kMaxLineLength = OPENTHREAD_CONFIG_CLI_MAX_LINE_LENGTH;
|
|
static constexpr uint16_t kMaxUserCommandEntries = OPENTHREAD_CONFIG_CLI_MAX_USER_CMD_ENTRIES;
|
|
|
|
static constexpr uint32_t kNetworkDiagnosticTimeoutMsecs = 5000;
|
|
static constexpr uint32_t kLocateTimeoutMsecs = 2500;
|
|
|
|
static constexpr uint16_t kMaxTxtDataSize = OPENTHREAD_CONFIG_CLI_TXT_RECORD_MAX_SIZE;
|
|
|
|
using Command = CommandEntry<Interpreter>;
|
|
|
|
void OutputPrompt(void);
|
|
void OutputResult(otError aError);
|
|
|
|
#if OPENTHREAD_CONFIG_IP6_BR_COUNTERS_ENABLE
|
|
void OutputBorderRouterCounters(void);
|
|
#endif
|
|
|
|
otError ProcessCommand(Arg aArgs[]);
|
|
|
|
template <CommandId kCommandId> otError Process(Arg aArgs[]);
|
|
|
|
otError ProcessUserCommands(Arg aArgs[]);
|
|
|
|
#if OPENTHREAD_FTD || OPENTHREAD_MTD
|
|
|
|
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
|
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_BACKBONE_ROUTER_ENABLE
|
|
otError ProcessBackboneRouterLocal(Arg aArgs[]);
|
|
#if OPENTHREAD_CONFIG_BACKBONE_ROUTER_MULTICAST_ROUTING_ENABLE
|
|
otError ProcessBackboneRouterMgmtMlr(Arg aArgs[]);
|
|
void PrintMulticastListenersTable(void);
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#if OPENTHREAD_FTD
|
|
void OutputEidCacheEntry(const otCacheEntryInfo &aEntry);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_IP6_INIT_EXT_ADDR_POOL_ENABLE && OPENTHREAD_CONFIG_CLI_IFCONFIG_INIT_ENABLE
|
|
otError ProcessIfconfigInit(Arg aArgs[]);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_ENABLE
|
|
static void HandleLocateResult(void *aContext,
|
|
otError aError,
|
|
const otIp6Address *aMeshLocalAddress,
|
|
uint16_t aRloc16);
|
|
void HandleLocateResult(otError aError, const otIp6Address *aMeshLocalAddress, uint16_t aRloc16);
|
|
#endif
|
|
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_TMF_PROXY_MLR_ENABLE && OPENTHREAD_CONFIG_COMMISSIONER_ENABLE
|
|
static void HandleMlrRegResult(void *aContext,
|
|
otError aError,
|
|
uint8_t aMlrStatus,
|
|
const otIp6Address *aFailedAddresses,
|
|
uint8_t aFailedAddressNum);
|
|
void HandleMlrRegResult(otError aError,
|
|
uint8_t aMlrStatus,
|
|
const otIp6Address *aFailedAddresses,
|
|
uint8_t aFailedAddressNum);
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_MULTI_RADIO
|
|
void OutputMultiRadioInfo(const otMultiRadioNeighborInfo &aMultiRadioInfo);
|
|
#endif
|
|
|
|
static void HandleActiveScanResult(otActiveScanResult *aResult, void *aContext);
|
|
static void HandleEnergyScanResult(otEnergyScanResult *aResult, void *aContext);
|
|
static void HandleLinkPcapReceive(const otRadioFrame *aFrame, bool aIsTx, void *aContext);
|
|
|
|
#if OPENTHREAD_CONFIG_TMF_NETDIAG_CLIENT_ENABLE
|
|
void HandleDiagnosticGetResponse(otError aError, const otMessage *aMessage, const otMessageInfo *aMessageInfo);
|
|
static void HandleDiagnosticGetResponse(otError aError,
|
|
otMessage *aMessage,
|
|
const otMessageInfo *aMessageInfo,
|
|
void *aContext);
|
|
|
|
void OutputMode(uint8_t aIndentSize, const otLinkModeConfig &aMode);
|
|
void OutputConnectivity(uint8_t aIndentSize, const otNetworkDiagConnectivity &aConnectivity);
|
|
void OutputRoute(uint8_t aIndentSize, const otNetworkDiagRoute &aRoute);
|
|
void OutputRouteData(uint8_t aIndentSize, const otNetworkDiagRouteData &aRouteData);
|
|
void OutputEnhRoute(uint8_t aIndentSize, const otNetworkDiagEnhRoute &aEnhRoute);
|
|
void OutputLeaderData(uint8_t aIndentSize, const otLeaderData &aLeaderData);
|
|
void OutputIp6AddrList(uint8_t aIndentSize, const otNetworkDiagIp6AddrList &aIp6Addrs);
|
|
void OutputNetworkDiagMacCounters(uint8_t aIndentSize, const otNetworkDiagMacCounters &aMacCounters);
|
|
void OutputNetworkDiagMleCounters(uint8_t aIndentSize, const otNetworkDiagMleCounters &aMleCounters);
|
|
void OutputChildTableEntry(uint8_t aIndentSize, const otNetworkDiagChildEntry &aChildEntry);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_BORDER_AGENT_TXT_DATA_PARSER_ENABLE
|
|
void OutputBorderAgentTxtDataInfo(uint8_t aIndentSize, const otBorderAgentTxtDataInfo &aInfo);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE
|
|
void OutputTrelCounters(const otTrelCounters &aCounters);
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_NAT64_TRANSLATOR_ENABLE
|
|
void OutputNat64Counters(const otNat64Counters &aCounters);
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_RADIO_STATS_ENABLE
|
|
void OutputRadioStatsTime(const char *aTimeName, uint64_t aTimeUs, uint64_t aTotalTime);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_SNTP_CLIENT_ENABLE
|
|
static void HandleSntpResponse(void *aContext, uint64_t aTime, otError aResult);
|
|
#endif
|
|
|
|
void HandleActiveScanResult(otActiveScanResult *aResult);
|
|
void HandleEnergyScanResult(otEnergyScanResult *aResult);
|
|
void HandleLinkPcapReceive(const otRadioFrame *aFrame, bool aIsTx);
|
|
#if OPENTHREAD_CONFIG_SNTP_CLIENT_ENABLE
|
|
void HandleSntpResponse(uint64_t aTime, otError aResult);
|
|
#endif
|
|
|
|
static void HandleDetachGracefullyResult(void *aContext);
|
|
void HandleDetachGracefullyResult(void);
|
|
|
|
#if OPENTHREAD_FTD && OPENTHREAD_CONFIG_MLE_DISCOVERY_SCAN_REQUEST_CALLBACK_ENABLE
|
|
static void HandleDiscoveryRequest(const otThreadDiscoveryRequestInfo *aInfo, void *aContext);
|
|
void HandleDiscoveryRequest(const otThreadDiscoveryRequestInfo &aInfo);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_CLI_REGISTER_IP6_RECV_CALLBACK
|
|
static void HandleIp6Receive(otMessage *aMessage, void *aContext);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_P2P_ENABLE
|
|
#if OPENTHREAD_CONFIG_WAKEUP_COORDINATOR_ENABLE
|
|
static void HandleP2pLinkDone(void *aContext);
|
|
void HandleP2pLinkDone(void);
|
|
#endif
|
|
|
|
static void HandleP2pUnlinkDone(void *aContext);
|
|
void HandleP2pUnlinkDone(void);
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_WAKEUP_COORDINATOR_ENABLE
|
|
static void HandleWakeupResult(otError aError, void *aContext);
|
|
void HandleWakeupResult(otError aError);
|
|
#endif
|
|
|
|
#endif // OPENTHREAD_FTD || OPENTHREAD_MTD
|
|
|
|
#if OPENTHREAD_CONFIG_DIAG_ENABLE
|
|
static void HandleDiagOutput(const char *aFormat, va_list aArguments, void *aContext)
|
|
OT_TOOL_PRINTF_STYLE_FORMAT_ARG_CHECK(1, 0);
|
|
void HandleDiagOutput(const char *aFormat, va_list aArguments) OT_TOOL_PRINTF_STYLE_FORMAT_ARG_CHECK(2, 0);
|
|
#endif
|
|
|
|
void SetCommandTimeout(uint32_t aTimeoutMilli);
|
|
|
|
static void HandleTimer(Timer &aTimer);
|
|
void HandleTimer(void);
|
|
|
|
struct UserCommandsEntry
|
|
{
|
|
const otCliCommand *mCommands;
|
|
uint8_t mLength;
|
|
void *mContext;
|
|
};
|
|
|
|
UserCommandsEntry mUserCommands[kMaxUserCommandEntries];
|
|
bool mCommandIsPending;
|
|
bool mInternalDebugCommand;
|
|
#if OPENTHREAD_CONFIG_CLI_PROMPT_ENABLE
|
|
bool mPromptEnabled;
|
|
#endif
|
|
|
|
TimerMilliContext mTimer;
|
|
|
|
#if OPENTHREAD_FTD || OPENTHREAD_MTD
|
|
#if OPENTHREAD_CONFIG_SNTP_CLIENT_ENABLE
|
|
bool mSntpQueryingInProgress;
|
|
#endif
|
|
|
|
Dataset mDataset;
|
|
NetworkData mNetworkData;
|
|
UdpExample mUdp;
|
|
|
|
#if OPENTHREAD_CONFIG_MAC_FILTER_ENABLE
|
|
MacFilter mMacFilter;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CLI_DNS_ENABLE
|
|
Dns mDns;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_MULTICAST_DNS_ENABLE && OPENTHREAD_CONFIG_MULTICAST_DNS_PUBLIC_API_ENABLE
|
|
Mdns mMdns;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
|
|
Ba mBa;
|
|
#endif
|
|
|
|
#if (OPENTHREAD_CONFIG_THREAD_VERSION >= OT_THREAD_VERSION_1_2)
|
|
Bbr mBbr;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_BORDER_ROUTING_ENABLE
|
|
Br mBr;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_TCP_ENABLE && OPENTHREAD_CONFIG_CLI_TCP_ENABLE
|
|
TcpExample mTcp;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_PLATFORM_TCP_ENABLE && OPENTHREAD_CONFIG_CLI_PLAT_TCP_ENABLE
|
|
PlatTcp mPlatTcp;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_COAP_API_ENABLE
|
|
Coap mCoap;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_COAP_SECURE_API_ENABLE
|
|
CoapSecure mCoapSecure;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_COMMISSIONER_ENABLE && OPENTHREAD_FTD
|
|
Commissioner mCommissioner;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_JOINER_ENABLE
|
|
Joiner mJoiner;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_SRP_CLIENT_ENABLE
|
|
SrpClient mSrpClient;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_SRP_SERVER_ENABLE
|
|
SrpServer mSrpServer;
|
|
#endif
|
|
|
|
#if OPENTHREAD_CONFIG_HISTORY_TRACKER_ENABLE
|
|
History mHistory;
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_MLE_LINK_METRICS_INITIATOR_ENABLE
|
|
LinkMetrics mLinkMetrics;
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_BLE_TCAT_ENABLE && OPENTHREAD_CONFIG_CLI_BLE_SECURE_ENABLE
|
|
Tcat mTcat;
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_PING_SENDER_ENABLE
|
|
PingSender mPing;
|
|
#endif
|
|
#if OPENTHREAD_CONFIG_MESH_DIAG_ENABLE && OPENTHREAD_FTD
|
|
MeshDiag mMeshDiag;
|
|
#endif
|
|
#endif // OPENTHREAD_FTD || OPENTHREAD_MTD
|
|
|
|
#if OPENTHREAD_CONFIG_TMF_ANYCAST_LOCATOR_ENABLE
|
|
bool mLocateInProgress : 1;
|
|
#endif
|
|
};
|
|
|
|
} // namespace Cli
|
|
} // namespace ot
|
|
|
|
#endif // OT_CLI_CLI_HPP_
|