OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2009 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 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "webrtc/p2p/base/basicpacketsocketfactory.h" | 13 #include "webrtc/p2p/base/basicpacketsocketfactory.h" |
14 #include "webrtc/p2p/base/relayport.h" | 14 #include "webrtc/p2p/base/relayport.h" |
15 #include "webrtc/p2p/base/relayserver.h" | 15 #include "webrtc/p2p/base/relayserver.h" |
16 #include "webrtc/base/gunit.h" | 16 #include "webrtc/rtc_base/gunit.h" |
17 #include "webrtc/base/helpers.h" | 17 #include "webrtc/rtc_base/helpers.h" |
18 #include "webrtc/base/logging.h" | 18 #include "webrtc/rtc_base/logging.h" |
19 #include "webrtc/base/socketadapters.h" | 19 #include "webrtc/rtc_base/socketadapters.h" |
20 #include "webrtc/base/socketaddress.h" | 20 #include "webrtc/rtc_base/socketaddress.h" |
21 #include "webrtc/base/ssladapter.h" | 21 #include "webrtc/rtc_base/ssladapter.h" |
22 #include "webrtc/base/thread.h" | 22 #include "webrtc/rtc_base/thread.h" |
23 #include "webrtc/base/virtualsocketserver.h" | 23 #include "webrtc/rtc_base/virtualsocketserver.h" |
24 | 24 |
25 using rtc::SocketAddress; | 25 using rtc::SocketAddress; |
26 | 26 |
27 static const SocketAddress kLocalAddress = SocketAddress("192.168.1.2", 0); | 27 static const SocketAddress kLocalAddress = SocketAddress("192.168.1.2", 0); |
28 static const SocketAddress kRelayUdpAddr = SocketAddress("99.99.99.1", 5000); | 28 static const SocketAddress kRelayUdpAddr = SocketAddress("99.99.99.1", 5000); |
29 static const SocketAddress kRelayTcpAddr = SocketAddress("99.99.99.2", 5001); | 29 static const SocketAddress kRelayTcpAddr = SocketAddress("99.99.99.2", 5001); |
30 static const SocketAddress kRelaySslAddr = SocketAddress("99.99.99.3", 443); | 30 static const SocketAddress kRelaySslAddr = SocketAddress("99.99.99.3", 443); |
31 static const SocketAddress kRelayExtAddr = SocketAddress("99.99.99.3", 5002); | 31 static const SocketAddress kRelayExtAddr = SocketAddress("99.99.99.3", 5002); |
32 | 32 |
33 static const int kTimeoutMs = 1000; | 33 static const int kTimeoutMs = 1000; |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 TestConnectUdp(); | 263 TestConnectUdp(); |
264 } | 264 } |
265 | 265 |
266 TEST_F(RelayPortTest, ConnectTcp) { | 266 TEST_F(RelayPortTest, ConnectTcp) { |
267 TestConnectTcp(); | 267 TestConnectTcp(); |
268 } | 268 } |
269 | 269 |
270 TEST_F(RelayPortTest, ConnectSslTcp) { | 270 TEST_F(RelayPortTest, ConnectSslTcp) { |
271 TestConnectSslTcp(); | 271 TestConnectSslTcp(); |
272 } | 272 } |
OLD | NEW |