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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
#define REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
#include <memory>
#include <set>
#include <string_view>
#include "base/memory/scoped_refptr.h"
#include "remoting/protocol/port_allocator_factory.h"
#include "third_party/webrtc/p2p/client/basic_port_allocator.h"
namespace remoting {
class FakeNetworkDispatcher;
class FakePacketSocketFactory;
class FakePortAllocator : public webrtc::BasicPortAllocator {
public:
FakePortAllocator(
webrtc::NetworkManager* network_manager,
webrtc::PacketSocketFactory* socket_factory,
scoped_refptr<protocol::TransportContext> transport_context_);
FakePortAllocator(const FakePortAllocator&) = delete;
FakePortAllocator& operator=(const FakePortAllocator&) = delete;
~FakePortAllocator() override;
// webrtc::BasicPortAllocator overrides.
webrtc::PortAllocatorSession* CreateSessionInternal(
std::string_view content_name,
int component,
std::string_view ice_username_fragment,
std::string_view ice_password) override;
private:
scoped_refptr<protocol::TransportContext> transport_context_;
};
class FakePortAllocatorFactory : public protocol::PortAllocatorFactory {
public:
FakePortAllocatorFactory(
scoped_refptr<FakeNetworkDispatcher> fake_network_dispatcher);
FakePortAllocatorFactory(const FakePortAllocatorFactory&) = delete;
FakePortAllocatorFactory& operator=(const FakePortAllocatorFactory&) = delete;
~FakePortAllocatorFactory() override;
FakePacketSocketFactory* socket_factory() { return socket_factory_.get(); }
// PortAllocatorFactory interface.
CreatePortAllocatorResult CreatePortAllocator(
scoped_refptr<protocol::TransportContext> transport_context,
base::WeakPtr<protocol::SessionOptionsProvider> session_options_provider)
override;
private:
std::unique_ptr<webrtc::NetworkManager> network_manager_;
std::unique_ptr<FakePacketSocketFactory> socket_factory_;
};
} // namespace remoting
#endif // REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
|