mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-02 11:47:47 +00:00
18 lines
564 B
C++
18 lines
564 B
C++
//
|
|
// Created by stephane bourque on 2022-07-26.
|
|
//
|
|
|
|
#include "AP_WS_Connection.h"
|
|
#include "fmt/format.h"
|
|
#include "framework/ow_constants.h"
|
|
|
|
namespace OpenWifi {
|
|
void AP_WS_Connection::Process_ping(Poco::JSON::Object::Ptr ParamsObj) {
|
|
if (ParamsObj->has(uCentralProtocol::UUID)) {
|
|
[[maybe_unused]] uint64_t UUID = ParamsObj->get(uCentralProtocol::UUID);
|
|
poco_trace(Logger_, fmt::format("PING({}): Current config is {}", CId_, UUID));
|
|
} else {
|
|
poco_warning(Logger_, fmt::format("PING({}): Missing parameter.", CId_));
|
|
}
|
|
}
|
|
} // namespace OpenWifi
|