This is a follow-up to https://webrtc-review.googlesource.com/c/src/+/106280. This time the whole code base is covered. Some files may have not been fixed though, whenever the IWYU tool was breaking the build. Bug: webrtc:8311 Change-Id: I2c31f552a87e887d33931d46e87b6208b1e483ef Reviewed-on: https://webrtc-review.googlesource.com/c/111965 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25830}
67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
/*
|
|
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <iostream> // NOLINT
|
|
#include <memory>
|
|
|
|
#include "p2p/base/relayserver.h"
|
|
#include "rtc_base/asyncudpsocket.h"
|
|
#include "rtc_base/socketaddress.h"
|
|
#include "rtc_base/socketserver.h"
|
|
#include "rtc_base/thread.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
if (argc != 3) {
|
|
std::cerr << "usage: relayserver internal-address external-address"
|
|
<< std::endl;
|
|
return 1;
|
|
}
|
|
|
|
rtc::SocketAddress int_addr;
|
|
if (!int_addr.FromString(argv[1])) {
|
|
std::cerr << "Unable to parse IP address: " << argv[1];
|
|
return 1;
|
|
}
|
|
|
|
rtc::SocketAddress ext_addr;
|
|
if (!ext_addr.FromString(argv[2])) {
|
|
std::cerr << "Unable to parse IP address: " << argv[2];
|
|
return 1;
|
|
}
|
|
|
|
rtc::Thread* pthMain = rtc::Thread::Current();
|
|
|
|
std::unique_ptr<rtc::AsyncUDPSocket> int_socket(
|
|
rtc::AsyncUDPSocket::Create(pthMain->socketserver(), int_addr));
|
|
if (!int_socket) {
|
|
std::cerr << "Failed to create a UDP socket bound at" << int_addr.ToString()
|
|
<< std::endl;
|
|
return 1;
|
|
}
|
|
|
|
std::unique_ptr<rtc::AsyncUDPSocket> ext_socket(
|
|
rtc::AsyncUDPSocket::Create(pthMain->socketserver(), ext_addr));
|
|
if (!ext_socket) {
|
|
std::cerr << "Failed to create a UDP socket bound at" << ext_addr.ToString()
|
|
<< std::endl;
|
|
return 1;
|
|
}
|
|
|
|
cricket::RelayServer server(pthMain);
|
|
server.AddInternalSocket(int_socket.get());
|
|
server.AddExternalSocket(ext_socket.get());
|
|
|
|
std::cout << "Listening internally at " << int_addr.ToString() << std::endl;
|
|
std::cout << "Listening externally at " << ext_addr.ToString() << std::endl;
|
|
|
|
pthMain->Run();
|
|
return 0;
|
|
}
|