forked from rdkcentral/networkmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetworkManagerImplementation.cpp
576 lines (503 loc) · 25.5 KB
/
NetworkManagerImplementation.cpp
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
/**
* If not stated otherwise in this file or this component's LICENSE
* file the following copyright and licenses apply:
*
* Copyright 2022 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
#include "NetworkManagerImplementation.h"
#include "NetworkManagerConnectivity.h"
#include "WiFiSignalStrengthMonitor.h"
using namespace WPEFramework;
using namespace WPEFramework::Plugin;
using namespace NetworkManagerLogger;
#define CIDR_NETMASK_IP_LEN 32
namespace WPEFramework
{
namespace Plugin
{
SERVICE_REGISTRATION(NetworkManagerImplementation, NETWORKMANAGER_MAJOR_VERSION, NETWORKMANAGER_MINOR_VERSION, NETWORKMANAGER_PATCH_VERSION);
NetworkManagerImplementation::NetworkManagerImplementation()
: _notificationCallbacks({})
{
/* Initialize Network Manager */
NetworkManagerLogger::Init();
LOG_ENTRY_FUNCTION();
/* Name says it all */
platform_init();
/* Initialize STUN Endpoints */
m_stunEndPoint = "stun.l.google.com";
m_stunPort = 19302;
m_stunBindTimeout = 30;
m_stunCacheTimeout = 0;
m_defaultInterface = "";
m_publicIP = "";
}
NetworkManagerImplementation::~NetworkManagerImplementation()
{
LOG_ENTRY_FUNCTION();
if(m_registrationThread.joinable())
{
m_registrationThread.join();
}
}
/**
* Register a notification callback
*/
uint32_t NetworkManagerImplementation::Register(INetworkManager::INotification *notification)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
// Make sure we can't register the same notification callback multiple times
if (std::find(_notificationCallbacks.begin(), _notificationCallbacks.end(), notification) == _notificationCallbacks.end()) {
_notificationCallbacks.push_back(notification);
notification->AddRef();
}
_notificationLock.Unlock();
return Core::ERROR_NONE;
}
/**
* Unregister a notification callback
*/
uint32_t NetworkManagerImplementation::Unregister(INetworkManager::INotification *notification)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
// Make sure we can't register the same notification callback multiple times
auto itr = std::find(_notificationCallbacks.begin(), _notificationCallbacks.end(), notification);
if (itr != _notificationCallbacks.end()) {
(*itr)->Release();
_notificationCallbacks.erase(itr);
}
_notificationLock.Unlock();
return Core::ERROR_NONE;
}
uint32_t NetworkManagerImplementation::Configure(const string& configLine /* @in */, NMLogging& logLevel /* @out */)
{
if(configLine.empty())
{
NMLOG_FATAL("config line : is empty !");
return(Core::ERROR_GENERAL);
}
NMLOG_TRACE("config line : %s", configLine.c_str());
Config config;
if(config.FromString(configLine))
{
/* stun configuration copy */
m_stunEndPoint = config.stun.stunEndpoint.Value();
m_stunPort = config.stun.port.Value();
m_stunBindTimeout = config.stun.interval.Value();
NMLOG_TRACE("config : stun endpoint %s", m_stunEndPoint.c_str());
NMLOG_TRACE("config : stun port %d", m_stunPort);
NMLOG_TRACE("config : stun interval %d", m_stunBindTimeout);
NMLOG_TRACE("config : loglevel %d", config.loglevel.Value());
logLevel = static_cast <NMLogging>(config.loglevel.Value());
// configure loglevel in libWPEFrameworkNetworkManagerImplementation.so
NetworkManagerLogger::SetLevel(static_cast <NetworkManagerLogger::LogLevel>(logLevel));
/* load connectivity monitor endpoints */
std::vector<std::string> connectEndpts;
if(!config.connectivityConf.endpoint_1.Value().empty()) {
NMLOG_TRACE("config : connectivity enpt 1 %s", config.connectivityConf.endpoint_1.Value().c_str());
connectEndpts.push_back(config.connectivityConf.endpoint_1.Value().c_str());
}
if(!config.connectivityConf.endpoint_2.Value().empty()) {
NMLOG_TRACE("config : connectivity enpt 2 %s", config.connectivityConf.endpoint_2.Value().c_str());
connectEndpts.push_back(config.connectivityConf.endpoint_2.Value().c_str());
}
if(!config.connectivityConf.endpoint_3.Value().empty()) {
NMLOG_TRACE("config : connectivity enpt 3 %s", config.connectivityConf.endpoint_3.Value().c_str());
connectEndpts.push_back(config.connectivityConf.endpoint_3.Value().c_str());
}
if(!config.connectivityConf.endpoint_4.Value().empty()) {
NMLOG_TRACE("config : connectivity enpt 4 %s", config.connectivityConf.endpoint_4.Value().c_str());
connectEndpts.push_back(config.connectivityConf.endpoint_4.Value().c_str());
}
if(!config.connectivityConf.endpoint_5.Value().empty()) {
NMLOG_TRACE("config : connectivity enpt 5 %s", config.connectivityConf.endpoint_5.Value().c_str());
connectEndpts.push_back(config.connectivityConf.endpoint_5.Value().c_str());
}
connectivityMonitor.setConnectivityMonitorEndpoints(connectEndpts);
}
else
NMLOG_ERROR("Plugin configuration read error !");
return(Core::ERROR_NONE);
}
/* @brief Get STUN Endpoint to be used for identifying Public IP */
uint32_t NetworkManagerImplementation::GetStunEndpoint (string &endPoint /* @out */, uint32_t& port /* @out */, uint32_t& bindTimeout /* @out */, uint32_t& cacheTimeout /* @out */) const
{
LOG_ENTRY_FUNCTION();
endPoint = m_stunEndPoint;
port = m_stunPort;
bindTimeout = m_stunBindTimeout;
cacheTimeout = m_stunCacheTimeout;
return Core::ERROR_NONE;
}
/* @brief Set STUN Endpoint to be used to identify Public IP */
uint32_t NetworkManagerImplementation::SetStunEndpoint (string const endPoint /* @in */, const uint32_t port /* @in */, const uint32_t bindTimeout /* @in */, const uint32_t cacheTimeout /* @in */)
{
LOG_ENTRY_FUNCTION();
if (!endPoint.empty())
m_stunEndPoint = endPoint;
if (port != 0)
m_stunPort = port;
m_stunBindTimeout = bindTimeout;
m_stunCacheTimeout = cacheTimeout;
return Core::ERROR_NONE;
}
/* @brief Get ConnectivityTest Endpoints */
uint32_t NetworkManagerImplementation::GetConnectivityTestEndpoints(IStringIterator*& endPoints/* @out */) const
{
LOG_ENTRY_FUNCTION();
std::vector<std::string> tmpEndPoints = connectivityMonitor.getConnectivityMonitorEndpoints();
endPoints = (Core::Service<RPC::StringIterator>::Create<RPC::IStringIterator>(tmpEndPoints));
return Core::ERROR_NONE;
}
/* @brief Set ConnectivityTest Endpoints */
uint32_t NetworkManagerImplementation::SetConnectivityTestEndpoints(IStringIterator* const endPoints /* @in */)
{
LOG_ENTRY_FUNCTION();
std::vector<std::string> tmpEndPoints;
if(endPoints)
{
string endPoint{};
while (endPoints->Next(endPoint) == true)
{
tmpEndPoints.push_back(endPoint);
}
connectivityMonitor.setConnectivityMonitorEndpoints(tmpEndPoints);
}
return Core::ERROR_NONE;
}
/* @brief Get Internet Connectivty Status */
uint32_t NetworkManagerImplementation::IsConnectedToInternet(const string &ipversion /* @in */, InternetStatus &result /* @out */)
{
LOG_ENTRY_FUNCTION();
nsm_internetState isconnected;
nsm_ipversion tmpVersion = NSM_IPRESOLVE_WHATEVER;
if(0 == strcasecmp("IPv4", ipversion.c_str()))
tmpVersion = NSM_IPRESOLVE_V4;
else if(0 == strcasecmp("IPv6", ipversion.c_str()))
tmpVersion = NSM_IPRESOLVE_V6;
isconnected = connectivityMonitor.getInternetState(tmpVersion);
if (FULLY_CONNECTED == isconnected)
result = INTERNET_FULLY_CONNECTED;
else if (CAPTIVE_PORTAL == isconnected)
result = INTERNET_CAPTIVE_PORTAL;
else if (LIMITED_INTERNET == isconnected)
result = INTERNET_LIMITED;
else
result = INTERNET_NOT_AVAILABLE;
return Core::ERROR_NONE;
}
/* @brief Get Authentication URL if the device is behind Captive Portal */
uint32_t NetworkManagerImplementation::GetCaptivePortalURI(string &endPoints/* @out */) const
{
LOG_ENTRY_FUNCTION();
endPoints = connectivityMonitor.getCaptivePortalURI();
return Core::ERROR_NONE;
}
/* @brief Start The Internet Connectivity Monitoring */
uint32_t NetworkManagerImplementation::StartConnectivityMonitoring(const uint32_t interval/* @in */)
{
LOG_ENTRY_FUNCTION();
if (connectivityMonitor.startContinuousConnectivityMonitor(interval))
return Core::ERROR_NONE;
else
return Core::ERROR_GENERAL;
}
/* @brief Stop The Internet Connectivity Monitoring */
uint32_t NetworkManagerImplementation::StopConnectivityMonitoring(void) const
{
LOG_ENTRY_FUNCTION();
if (connectivityMonitor.stopContinuousConnectivityMonitor())
return Core::ERROR_NONE;
else
return Core::ERROR_GENERAL;
}
/* @brief Get the Public IP used for external world communication */
uint32_t NetworkManagerImplementation::GetPublicIP (const string &ipversion /* @in */, string& ipAddress /* @out */)
{
LOG_ENTRY_FUNCTION();
stun::bind_result result;
bool isIPv6 = (0 == strcasecmp("IPv6", ipversion.c_str()));
stun::protocol proto (isIPv6 ? stun::protocol::af_inet6 : stun::protocol::af_inet);
if(stunClient.bind(m_stunEndPoint, m_stunPort, m_defaultInterface, proto, m_stunBindTimeout, m_stunCacheTimeout, result))
{
ipAddress = result.public_ip;
return Core::ERROR_NONE;
}
else
{
return Core::ERROR_GENERAL;
}
}
/* @brief Set the network manager plugin log level */
uint32_t NetworkManagerImplementation::SetLogLevel(const NMLogging& logLevel /* @in */)
{
NetworkManagerLogger::SetLevel((LogLevel)logLevel);
return Core::ERROR_NONE;
}
/* @brief Request for ping and get the response in as event. The GUID used in the request will be returned in the event. */
uint32_t NetworkManagerImplementation::Ping (const string ipversion /* @in */, const string endpoint /* @in */, const uint32_t noOfRequest /* @in */, const uint16_t timeOutInSeconds /* @in */, const string guid /* @in */, string& response /* @out */)
{
char cmd[100] = "";
if(0 == strcasecmp("IPv6", ipversion.c_str()))
{
snprintf(cmd, sizeof(cmd), "ping6 -c %d -W %d '%s' 2>&1", noOfRequest, timeOutInSeconds, endpoint.c_str());
}
else
{
snprintf(cmd, sizeof(cmd), "ping -c %d -W %d '%s' 2>&1", noOfRequest, timeOutInSeconds, endpoint.c_str());
}
NMLOG_INFO ("The Command is %s", cmd);
string commandToExecute(cmd);
executeExternally(NETMGR_PING, commandToExecute, response);
return Core::ERROR_NONE;
}
/* @brief Request for trace get the response in as event. The GUID used in the request will be returned in the event. */
uint32_t NetworkManagerImplementation::Trace (const string ipversion /* @in */, const string endpoint /* @in */, const uint32_t noOfRequest /* @in */, const string guid /* @in */, string& response /* @out */)
{
char cmd[256] = "";
string tempResult = "";
if(0 == strcasecmp("IPv6", ipversion.c_str()))
{
snprintf(cmd, 256, "traceroute6 -w 3 -m 6 -q %d %s 64 2>&1", noOfRequest, endpoint.c_str());
}
else
{
snprintf(cmd, 256, "traceroute -w 3 -m 6 -q %d %s 52 2>&1", noOfRequest, endpoint.c_str());
}
NMLOG_INFO ("The Command is %s", cmd);
string commandToExecute(cmd);
executeExternally(NETMGR_TRACE, commandToExecute, tempResult);
JsonObject temp;
temp["target"] = endpoint;
temp["results"] = tempResult;
temp.ToString(response);
return Core::ERROR_NONE;
}
void NetworkManagerImplementation::executeExternally(NetworkEvents event, const string commandToExecute, string& response)
{
FILE *pipe = NULL;
string output{};
char buffer[1024];
JsonObject pingResult;
int exitStatus;
pipe = popen(commandToExecute.c_str(), "r");
if (pipe == NULL)
{
NMLOG_INFO ("%s: failed to open file '%s' for read mode with result: %s", __FUNCTION__, commandToExecute.c_str(), strerror(errno));
return;
}
if (NETMGR_PING == event)
{
while (!feof(pipe) && fgets(buffer, 1024, pipe) != NULL)
{
// remove newline from buffer
buffer[strcspn(buffer, "\n")] = '\0';
string line(buffer);
if( line.find( "packet" ) != string::npos )
{
//Example: 10 packets transmitted, 10 packets received, 0% packet loss
stringstream ss( line );
int transCount;
ss >> transCount;
pingResult["packetsTransmitted"] = transCount;
string token;
getline( ss, token, ',' );
getline( ss, token, ',' );
stringstream ss2( token );
int rxCount;
ss2 >> rxCount;
pingResult["packetsReceived"] = rxCount;
getline( ss, token, ',' );
string prefix = token.substr(0, token.find("%"));
pingResult["packetLoss"] = prefix.c_str();
}
else if( line.find( "min/avg/max" ) != string::npos )
{
//Example: round-trip min/avg/max = 17.038/18.310/20.197 ms
stringstream ss( line );
string fullpath;
getline( ss, fullpath, '=' );
getline( ss, fullpath, '=' );
string prefix;
int index = fullpath.find("/");
if (index >= 0)
{
prefix = fullpath.substr(0, fullpath.find("/"));
pingResult["tripMin"] = prefix.c_str();
}
index = fullpath.find("/");
if (index >= 0)
{
fullpath = fullpath.substr(index + 1, fullpath.length());
prefix = fullpath.substr(0, fullpath.find("/"));
pingResult["tripAvg"] = prefix.c_str();
}
index = fullpath.find("/");
if (index >= 0)
{
fullpath = fullpath.substr(index + 1, fullpath.length());
prefix = fullpath.substr(0, fullpath.find("/"));
pingResult["tripMax"] = prefix.c_str();
}
index = fullpath.find("/");
if (index >= 0)
{
fullpath = fullpath.substr(index + 1, fullpath.length());
pingResult["tripStdDev"] = fullpath.c_str();
}
}
else if( line.find( "bad" ) != string::npos )
{
pingResult["success"] = false;
pingResult["error"] = "Bad Address";
}
}
exitStatus = pclose(pipe);
// Check the exit status to determine if the command was successful
if (WIFEXITED(exitStatus) && WEXITSTATUS(exitStatus) == 0) {
pingResult["success"] = true;
pingResult["error"] = "";
} else {
pingResult["success"] = false;
pingResult["error"] = "Could not ping endpoint";
}
pingResult.ToString(response);
NMLOG_INFO("Response is, %s", response.c_str());
}
else if (NETMGR_TRACE == event)
{
// We return the entire output of the trace command but since this contains newlines it is not valid as
// a json value so we will parse the output into an array of strings, one element for each line.
JsonArray list;
while (!feof(pipe) && fgets(buffer, 1024, pipe) != NULL)
{
// remove newline from buffer
buffer[strcspn(buffer, "\n")] = ' ';
string line(buffer);
list.Add(line);
}
pclose(pipe);
list.ToString(response);
NMLOG_INFO("Response is, %s", response.c_str());
}
return;
}
// WiFi Specific Methods
/* @brief Initiate a WIFI Scan; This is Async method and returns the scan results as Event */
uint32_t NetworkManagerImplementation::GetSupportedSecurityModes(ISecurityModeIterator*& securityModes /* @out */) const
{
LOG_ENTRY_FUNCTION();
std::vector<WIFISecurityModeInfo> modeInfo {
{WIFI_SECURITY_NONE, "WIFI_SECURITY_NONE"},
{WIFI_SECURITY_WEP_64, "WIFI_SECURITY_WEP_64"},
{WIFI_SECURITY_WEP_128, "WIFI_SECURITY_WEP_128"},
{WIFI_SECURITY_WPA_PSK_TKIP, "WIFI_SECURITY_WPA_PSK_TKIP"},
{WIFI_SECURITY_WPA_PSK_AES, "WIFI_SECURITY_WPA_PSK_AES"},
{WIFI_SECURITY_WPA2_PSK_TKIP, "WIFI_SECURITY_WPA2_PSK_TKIP"},
{WIFI_SECURITY_WPA2_PSK_AES, "WIFI_SECURITY_WPA2_PSK_AES"},
{WIFI_SECURITY_WPA_ENTERPRISE_TKIP, "WIFI_SECURITY_WPA_ENTERPRISE_TKIP"},
{WIFI_SECURITY_WPA_ENTERPRISE_AES, "WIFI_SECURITY_WPA_ENTERPRISE_AES"},
{WIFI_SECURITY_WPA2_ENTERPRISE_TKIP, "WIFI_SECURITY_WPA2_ENTERPRISE_TKIP"},
{WIFI_SECURITY_WPA2_ENTERPRISE_AES, "WIFI_SECURITY_WPA2_ENTERPRISE_AES"},
{WIFI_SECURITY_WPA_WPA2_PSK, "WIFI_SECURITY_WPA_WPA2_PSK"},
{WIFI_SECURITY_WPA_WPA2_ENTERPRISE, "WIFI_SECURITY_WPA_WPA2_ENTERPRISE"},
{WIFI_SECURITY_WPA3_PSK_AES, "WIFI_SECURITY_WPA3_PSK_AES"},
{WIFI_SECURITY_WPA3_SAE, "WIFI_SECURITY_WPA3_SAE"}
};
using Implementation = RPC::IteratorType<Exchange::INetworkManager::ISecurityModeIterator>;
securityModes = Core::Service<Implementation>::Create<Exchange::INetworkManager::ISecurityModeIterator>(modeInfo);
return Core::ERROR_NONE;
}
void NetworkManagerImplementation::ReportInterfaceStateChangedEvent(INetworkManager::InterfaceState state, string interface)
{
LOG_ENTRY_FUNCTION();
if(Exchange::INetworkManager::INTERFACE_LINK_DOWN == state) {
// Start the connectivity monitor with 'false' to indicate the interface is down.
// The monitor will automatically exit after the retry attempts are completed, posting a 'noInternet' event.
connectivityMonitor.startConnectivityMonitor(false);
}
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onInterfaceStateChange(state, interface);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportIPAddressChangedEvent(const string& interface, bool isAcquired, bool isIPv6, const string& ipAddress)
{
LOG_ENTRY_FUNCTION();
if (isAcquired) {
// Start the connectivity monitor with 'true' to indicate the interface is up.
// The monitor will conntinoue even after no internet retry completed, Exit when fully connectd.
connectivityMonitor.startConnectivityMonitor(true);
}
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onIPAddressChange(interface, isAcquired, isIPv6, ipAddress);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportActiveInterfaceChangedEvent(const string prevActiveInterface, const string currentActiveinterface)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onActiveInterfaceChange(prevActiveInterface, currentActiveinterface);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportInternetStatusChangedEvent(const InternetStatus oldState, const InternetStatus newstate)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onInternetStatusChange(oldState, newstate);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportAvailableSSIDsEvent(const string jsonOfWiFiScanResults)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
NMLOG_INFO("scan result is, %s", jsonOfWiFiScanResults.c_str());
for (const auto callback : _notificationCallbacks) {
callback->onAvailableSSIDs(jsonOfWiFiScanResults);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportWiFiStateChangedEvent(const INetworkManager::WiFiState state)
{
LOG_ENTRY_FUNCTION();
/* start signal strength monitor when wifi connected */
if(INetworkManager::WiFiState::WIFI_STATE_CONNECTED == state)
m_wifiSignalMonitor.startWiFiSignalStrengthMonitor(DEFAULT_WIFI_SIGNAL_TEST_INTERVAL_SEC);
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onWiFiStateChange(state);
}
_notificationLock.Unlock();
}
void NetworkManagerImplementation::ReportWiFiSignalStrengthChangedEvent(const string ssid, const string signalLevel, const WiFiSignalQuality signalQuality)
{
LOG_ENTRY_FUNCTION();
_notificationLock.Lock();
for (const auto callback : _notificationCallbacks) {
callback->onWiFiSignalStrengthChange(ssid, signalLevel, signalQuality);
}
_notificationLock.Unlock();
}
}
}