Skip to content

Commit

Permalink
Restlyed
Browse files Browse the repository at this point in the history
  • Loading branch information
shripad621git committed May 3, 2024
1 parent 9860bc5 commit 7c5d5a7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ using namespace DeviceLayer::NetworkCommissioning;
namespace {

// For WiFi and Thread scan results, each item will cost ~60 bytes in TLV, thus 15 is a safe upper bound of scan results.
#if CHIP_DEVICE_CONFIG_ENABLE_WIFI_STATION || CHIP_DEVICE_CONFIG_ENABLE_WIFI_AP || CHIP_DEVICE_CONFIG_ENABLE_THREAD
constexpr size_t kMaxNetworksInScanResponse = 15;
#endif

constexpr uint16_t kCurrentClusterRevision = 2;

Expand Down Expand Up @@ -623,7 +621,6 @@ void Instance::HandleAddOrUpdateWiFiNetwork(HandlerContext & ctx, const Commands
#endif
}


#if CHIP_DEVICE_CONFIG_ENABLE_WIFI_PDC
void Instance::HandleAddOrUpdateWiFiNetworkWithPDC(HandlerContext & ctx,
const Commands::AddOrUpdateWiFiNetwork::DecodableType & req)
Expand Down Expand Up @@ -754,7 +751,6 @@ void Instance::HandleAddOrUpdateThreadNetwork(HandlerContext & ctx, const Comman
#endif
}


void Instance::UpdateBreadcrumb(const Optional<uint64_t> & breadcrumb)
{
VerifyOrReturn(breadcrumb.HasValue());
Expand Down Expand Up @@ -1184,7 +1180,6 @@ void Instance::OnFinished(Status status, CharSpan debugText, WiFiScanResponseIte
#endif
}


void Instance::OnPlatformEventHandler(const DeviceLayer::ChipDeviceEvent * event, intptr_t arg)
{
Instance * this_ = reinterpret_cast<Instance *>(arg);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,9 @@ class Instance : public CommandHandlerInterface,

// Actual handlers of the commands
void HandleScanNetworks(HandlerContext & ctx, const Commands::ScanNetworks::DecodableType & req);

void HandleAddOrUpdateWiFiNetwork(HandlerContext & ctx, const Commands::AddOrUpdateWiFiNetwork::DecodableType & req);

void HandleAddOrUpdateWiFiNetworkWithPDC(HandlerContext & ctx, const Commands::AddOrUpdateWiFiNetwork::DecodableType & req);

void HandleAddOrUpdateThreadNetwork(HandlerContext & ctx, const Commands::AddOrUpdateThreadNetwork::DecodableType & req);

void HandleRemoveNetwork(HandlerContext & ctx, const Commands::RemoveNetwork::DecodableType & req);
void HandleConnectNetwork(HandlerContext & ctx, const Commands::ConnectNetwork::DecodableType & req);
void HandleReorderNetwork(HandlerContext & ctx, const Commands::ReorderNetwork::DecodableType & req);
Expand Down
2 changes: 2 additions & 0 deletions src/include/platform/NetworkCommissioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ class WiFiDriver : public Internal::WirelessDriver
* message.)
*/
virtual void OnFinished(Status status, CharSpan debugText, WiFiScanResponseIterator * networks) = 0;

virtual ~ScanCallback() = default;
};

Expand Down Expand Up @@ -398,6 +399,7 @@ class ThreadDriver : public Internal::WirelessDriver
* message.)
*/
virtual void OnFinished(Status err, CharSpan debugText, ThreadScanResponseIterator * networks) = 0;

virtual ~ScanCallback() = default;
};

Expand Down

0 comments on commit 7c5d5a7

Please sign in to comment.