OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2010 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ | 11 #ifndef WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ |
12 #define WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ | 12 #define WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include "webrtc/p2p/base/basicpacketsocketfactory.h" | 15 #include "webrtc/p2p/base/basicpacketsocketfactory.h" |
16 #include "webrtc/p2p/base/portallocator.h" | 16 #include "webrtc/p2p/base/portallocator.h" |
17 #include "webrtc/p2p/base/udpport.h" | 17 #include "webrtc/p2p/base/udpport.h" |
18 #include "webrtc/base/scoped_ptr.h" | 18 #include "webrtc/base/scoped_ptr.h" |
19 | 19 |
20 namespace rtc { | 20 namespace rtc { |
21 class SocketFactory; | 21 class SocketFactory; |
22 class Thread; | 22 class Thread; |
23 } | 23 } |
24 | 24 |
25 namespace cricket { | 25 namespace cricket { |
26 | 26 |
| 27 class TestUDPPort : public UDPPort { |
| 28 public: |
| 29 static TestUDPPort* Create(rtc::Thread* thread, |
| 30 rtc::PacketSocketFactory* factory, |
| 31 rtc::Network* network, |
| 32 const rtc::IPAddress& ip, |
| 33 uint16_t min_port, |
| 34 uint16_t max_port, |
| 35 const std::string& username, |
| 36 const std::string& password, |
| 37 const std::string& origin, |
| 38 bool emit_localhost_for_anyaddress) { |
| 39 TestUDPPort* port = new TestUDPPort(thread, factory, network, ip, min_port, |
| 40 max_port, username, password, origin, |
| 41 emit_localhost_for_anyaddress); |
| 42 if (!port->Init()) { |
| 43 delete port; |
| 44 port = nullptr; |
| 45 } |
| 46 return port; |
| 47 } |
| 48 void SendBindingResponse(StunMessage* request, |
| 49 const rtc::SocketAddress& addr) override { |
| 50 UDPPort::SendBindingResponse(request, addr); |
| 51 sent_binding_response_ = true; |
| 52 } |
| 53 bool sent_binding_response() { return sent_binding_response_; } |
| 54 void set_sent_binding_response(bool response) { |
| 55 sent_binding_response_ = response; |
| 56 } |
| 57 |
| 58 protected: |
| 59 TestUDPPort(rtc::Thread* thread, |
| 60 rtc::PacketSocketFactory* factory, |
| 61 rtc::Network* network, |
| 62 const rtc::IPAddress& ip, |
| 63 uint16_t min_port, |
| 64 uint16_t max_port, |
| 65 const std::string& username, |
| 66 const std::string& password, |
| 67 const std::string& origin, |
| 68 bool emit_localhost_for_anyaddress) |
| 69 : UDPPort(thread, |
| 70 factory, |
| 71 network, |
| 72 ip, |
| 73 min_port, |
| 74 max_port, |
| 75 username, |
| 76 password, |
| 77 origin, |
| 78 emit_localhost_for_anyaddress) {} |
| 79 |
| 80 bool sent_binding_response_ = false; |
| 81 }; |
| 82 |
27 class FakePortAllocatorSession : public PortAllocatorSession { | 83 class FakePortAllocatorSession : public PortAllocatorSession { |
28 public: | 84 public: |
29 FakePortAllocatorSession(rtc::Thread* worker_thread, | 85 FakePortAllocatorSession(rtc::Thread* worker_thread, |
30 rtc::PacketSocketFactory* factory, | 86 rtc::PacketSocketFactory* factory, |
31 const std::string& content_name, | 87 const std::string& content_name, |
32 int component, | 88 int component, |
33 const std::string& ice_ufrag, | 89 const std::string& ice_ufrag, |
34 const std::string& ice_pwd) | 90 const std::string& ice_pwd) |
35 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd, | 91 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd, |
36 cricket::kDefaultPortAllocatorFlags), | 92 cricket::kDefaultPortAllocatorFlags), |
37 worker_thread_(worker_thread), | 93 worker_thread_(worker_thread), |
38 factory_(factory), | 94 factory_(factory), |
39 network_("network", "unittest", | 95 network_("network", "unittest", |
40 rtc::IPAddress(INADDR_LOOPBACK), 8), | 96 rtc::IPAddress(INADDR_LOOPBACK), 8), |
41 port_(), running_(false), | 97 port_(), running_(false), |
42 port_config_count_(0) { | 98 port_config_count_(0) { |
43 network_.AddIP(rtc::IPAddress(INADDR_LOOPBACK)); | 99 network_.AddIP(rtc::IPAddress(INADDR_LOOPBACK)); |
44 } | 100 } |
45 | 101 |
46 virtual void StartGettingPorts() { | 102 virtual void StartGettingPorts() { |
47 if (!port_) { | 103 if (!port_) { |
48 port_.reset(cricket::UDPPort::Create(worker_thread_, | 104 port_.reset(TestUDPPort::Create(worker_thread_, factory_, &network_, |
49 factory_, | 105 network_.GetBestIP(), 0, 0, username(), |
50 &network_, | 106 password(), std::string(), false)); |
51 network_.GetBestIP(), | |
52 0, | |
53 0, | |
54 username(), | |
55 password(), | |
56 std::string(), | |
57 false)); | |
58 AddPort(port_.get()); | 107 AddPort(port_.get()); |
59 } | 108 } |
60 ++port_config_count_; | 109 ++port_config_count_; |
61 running_ = true; | 110 running_ = true; |
62 } | 111 } |
63 | 112 |
64 virtual void StopGettingPorts() { running_ = false; } | 113 virtual void StopGettingPorts() { running_ = false; } |
65 virtual bool IsGettingPorts() { return running_; } | 114 virtual bool IsGettingPorts() { return running_; } |
66 virtual void ClearGettingPorts() {} | 115 virtual void ClearGettingPorts() {} |
67 | 116 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 161 |
113 private: | 162 private: |
114 rtc::Thread* worker_thread_; | 163 rtc::Thread* worker_thread_; |
115 rtc::PacketSocketFactory* factory_; | 164 rtc::PacketSocketFactory* factory_; |
116 rtc::scoped_ptr<rtc::BasicPacketSocketFactory> owned_factory_; | 165 rtc::scoped_ptr<rtc::BasicPacketSocketFactory> owned_factory_; |
117 }; | 166 }; |
118 | 167 |
119 } // namespace cricket | 168 } // namespace cricket |
120 | 169 |
121 #endif // WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ | 170 #endif // WEBRTC_P2P_CLIENT_FAKEPORTALLOCATOR_H_ |
OLD | NEW |