blob: decd33c7b6efa5a9dba0fe17b2eb37060ba23c53 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2004--2011, Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include "talk/app/webrtc/portallocatorfactory.h"
29
30#include "talk/base/logging.h"
31#include "talk/base/network.h"
32#include "talk/base/thread.h"
33#include "talk/p2p/base/basicpacketsocketfactory.h"
henrike@webrtc.org723d6832013-07-12 16:04:50 +000034#include "talk/p2p/client/basicportallocator.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000035
henrike@webrtc.org28e20752013-07-10 00:45:36 +000036namespace webrtc {
37
38using talk_base::scoped_ptr;
39
40talk_base::scoped_refptr<PortAllocatorFactoryInterface>
41PortAllocatorFactory::Create(
42 talk_base::Thread* worker_thread) {
43 talk_base::RefCountedObject<PortAllocatorFactory>* allocator =
44 new talk_base::RefCountedObject<PortAllocatorFactory>(worker_thread);
45 return allocator;
46}
47
48PortAllocatorFactory::PortAllocatorFactory(talk_base::Thread* worker_thread)
49 : network_manager_(new talk_base::BasicNetworkManager()),
50 socket_factory_(new talk_base::BasicPacketSocketFactory(worker_thread)) {
51}
52
53PortAllocatorFactory::~PortAllocatorFactory() {}
54
55cricket::PortAllocator* PortAllocatorFactory::CreatePortAllocator(
56 const std::vector<StunConfiguration>& stun,
57 const std::vector<TurnConfiguration>& turn) {
58 std::vector<talk_base::SocketAddress> stun_hosts;
59 typedef std::vector<StunConfiguration>::const_iterator StunIt;
60 for (StunIt stun_it = stun.begin(); stun_it != stun.end(); ++stun_it) {
61 stun_hosts.push_back(stun_it->server);
62 }
63
64 talk_base::SocketAddress stun_addr;
65 if (!stun_hosts.empty()) {
66 stun_addr = stun_hosts.front();
67 }
68 scoped_ptr<cricket::BasicPortAllocator> allocator(
69 new cricket::BasicPortAllocator(
70 network_manager_.get(), socket_factory_.get(), stun_addr));
71
henrike@webrtc.org1e09a712013-07-26 19:17:59 +000072 for (size_t i = 0; i < turn.size(); ++i) {
73 cricket::RelayCredentials credentials(turn[i].username, turn[i].password);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000074 cricket::RelayServerConfig relay_server(cricket::RELAY_TURN);
75 cricket::ProtocolType protocol;
henrike@webrtc.org1e09a712013-07-26 19:17:59 +000076 if (cricket::StringToProto(turn[i].transport_type.c_str(), &protocol)) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +000077 relay_server.ports.push_back(cricket::ProtocolAddress(
wu@webrtc.org91053e72013-08-10 07:18:04 +000078 turn[i].server, protocol, turn[i].secure));
henrike@webrtc.org28e20752013-07-10 00:45:36 +000079 relay_server.credentials = credentials;
80 allocator->AddRelay(relay_server);
81 } else {
henrike@webrtc.org1e09a712013-07-26 19:17:59 +000082 LOG(LS_WARNING) << "Ignoring TURN server " << turn[i].server << ". "
83 << "Reason= Incorrect " << turn[i].transport_type
henrike@webrtc.org28e20752013-07-10 00:45:36 +000084 << " transport parameter.";
85 }
86 }
87 return allocator.release();
88}
89
90} // namespace webrtc