Select one of the symbols to view example projects that use it.
 
Outline
#define UTILS_OTNS_HPP_
#include "openthread-core-config.h"
#include <openthread/thread.h>
#include <openthread/thread_ftd.h>
#include <openthread/platform/otns.h>
#include "coap/coap_message.hpp"
#include "common/locator.hpp"
#include "common/non_copyable.hpp"
#include "common/notifier.hpp"
#include "mac/mac_frame.hpp"
#include "mac/mac_types.hpp"
#include "net/ip6_address.hpp"
#include "thread/neighbor.hpp"
#include "thread/neighbor_table.hpp"
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/openthread/src/core/utils/otns.hpp
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020, 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 wraps the calls to platform OTNS abstractions. *//* ... */ #ifndef UTILS_OTNS_HPP_ #define UTILS_OTNS_HPP_ #include "openthread-core-config.h" #if (OPENTHREAD_MTD || OPENTHREAD_FTD) && OPENTHREAD_CONFIG_OTNS_ENABLE #include <openthread/thread.h> #include <openthread/thread_ftd.h> #include <openthread/platform/otns.h> #include "coap/coap_message.hpp" #include "common/locator.hpp" #include "common/non_copyable.hpp" #include "common/notifier.hpp" #include "mac/mac_frame.hpp" #include "mac/mac_types.hpp" #include "net/ip6_address.hpp" #include "thread/neighbor.hpp" #include "thread/neighbor_table.hpp"12 includes namespace ot { namespace Utils { /** * Implements the OTNS Stub that interacts with OTNS. *//* ... */ class Otns : public InstanceLocator, private NonCopyable { friend class ot::Notifier; public: /** * Initializes the object. * * @param[in] aInstance A reference to the OpenThread instance. *//* ... */ explicit Otns(Instance &aInstance) : InstanceLocator(aInstance) { }{...} /** * Emits radio short address to OTNS when changed. * * @param[in] aShortAddress The new short address. *//* ... */ static void EmitShortAddress(uint16_t aShortAddress); /** * Emits radio extended address to OTNS when changed. * * @param[in] aExtAddress The new extended address. *//* ... */ static void EmitExtendedAddress(const Mac::ExtAddress &aExtAddress); /** * Emits ping request information to OTNS when sending. * * @param[in] aPeerAddress The peer address of the ping request. * @param[in] aPingLength The data length of the ping request. * @param[in] aTimestamp The timestamp of the ping request. * @param[in] aHopLimit The hop limit of the ping request. *//* ... */ static void EmitPingRequest(const Ip6::Address &aPeerAddress, uint16_t aPingLength, uint32_t aTimestamp, uint8_t aHopLimit); /** * Emits ping reply information to OTNS when received. * * @param[in] aPeerAddress The peer address of the ping request. * @param[in] aPingLength The data length of the ping reply. * @param[in] aTimestamp The timestamp of the ping reply. * @param[in] aHopLimit The hop limit of the ping reply. *//* ... */ static void EmitPingReply(const Ip6::Address &aPeerAddress, uint16_t aPingLength, uint32_t aTimestamp, uint8_t aHopLimit); /** * Emits a neighbor table event to OTNS when a neighbor is added or removed. * * @param[in] aEvent The event type. * @param[in] aNeighbor The neighbor that is added or removed. *//* ... */ static void EmitNeighborChange(NeighborTable::Event aEvent, const Neighbor &aNeighbor); /** * Emits a transmit event to OTNS. * * @param[in] aFrame The frame of the transmission. *//* ... */ static void EmitTransmit(const Mac::TxFrame &aFrame); /** * Emits the device mode to OTNS. * * @param[in] aMode The device mode. *//* ... */ static void EmitDeviceMode(Mle::DeviceMode aMode); /** * Emits the sending COAP message info to OTNS. * * @param[in] aMessage The sending COAP message. * @param[in] aMessageInfo The message info. *//* ... */ static void EmitCoapSend(const Coap::Message &aMessage, const Ip6::MessageInfo &aMessageInfo); /** * Emits the COAP message sending failure to OTNS. * * @param[in] aError The error in sending the COAP message. * @param[in] aMessage The COAP message failed to send. * @param[in] aMessageInfo The message info. *//* ... */ static void EmitCoapSendFailure(Error aError, Coap::Message &aMessage, const Ip6::MessageInfo &aMessageInfo); /** * Emits the received COAP message info to OTNS. * * @param[in] aMessage The received COAP message. * @param[in] aMessageInfo The message info. *//* ... */ static void EmitCoapReceive(const Coap::Message &aMessage, const Ip6::MessageInfo &aMessageInfo); ... private: static void EmitStatus(const char *aFmt, ...); void HandleNotifierEvents(Events aEvents);... }{...}; }{...} // namespace Utils }{...} // namespace ot /* ... */ #endif //(OPENTHREAD_MTD || OPENTHREAD_FTD) && OPENTHREAD_CONFIG_OTNS_ENABLE /* ... */ #endif // UTILS_OTNS_HPP_
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.