aboutsummaryrefslogtreecommitdiff
path: root/osp/impl/testing/fake_mdns_platform_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'osp/impl/testing/fake_mdns_platform_service.cc')
-rw-r--r--osp/impl/testing/fake_mdns_platform_service.cc50
1 files changed, 0 insertions, 50 deletions
diff --git a/osp/impl/testing/fake_mdns_platform_service.cc b/osp/impl/testing/fake_mdns_platform_service.cc
deleted file mode 100644
index 8ce6faf7..00000000
--- a/osp/impl/testing/fake_mdns_platform_service.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2018 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "osp/impl/testing/fake_mdns_platform_service.h"
-
-#include <algorithm>
-
-#include "util/osp_logging.h"
-
-namespace openscreen {
-namespace osp {
-
-FakeMdnsPlatformService::FakeMdnsPlatformService() = default;
-FakeMdnsPlatformService::~FakeMdnsPlatformService() = default;
-
-std::vector<MdnsPlatformService::BoundInterface>
-FakeMdnsPlatformService::RegisterInterfaces(
- const std::vector<NetworkInterfaceIndex>& allowlist) {
- OSP_CHECK(registered_interfaces_.empty());
- if (allowlist.empty()) {
- registered_interfaces_ = interfaces_;
- } else {
- for (const auto& interface : interfaces_) {
- if (std::find(allowlist.begin(), allowlist.end(),
- interface.interface_info.index) != allowlist.end()) {
- registered_interfaces_.push_back(interface);
- }
- }
- }
- return registered_interfaces_;
-}
-
-void FakeMdnsPlatformService::DeregisterInterfaces(
- const std::vector<BoundInterface>& interfaces) {
- for (const auto& interface : interfaces) {
- auto index = interface.interface_info.index;
- auto it = std::find_if(registered_interfaces_.begin(),
- registered_interfaces_.end(),
- [index](const BoundInterface& interface) {
- return interface.interface_info.index == index;
- });
- OSP_CHECK(it != registered_interfaces_.end())
- << "Must deregister a previously returned interface: " << index;
- registered_interfaces_.erase(it);
- }
-}
-
-} // namespace osp
-} // namespace openscreen