Mechanically generated by running this command: tools_webrtc/do-renames.sh update all-renames.txt && git cl format Then manually updating: tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc Bug: webrtc:10159 No-Presubmit: true No-Tree-Checks: true No-Try: true Change-Id: I54824cd91dada8fc3ee3d098f971bc319d477833 Reviewed-on: https://webrtc-review.googlesource.com/c/115653 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26226}
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/relay_server.h"
|
|
#include "rtc_base/async_udp_socket.h"
|
|
#include "rtc_base/socket_address.h"
|
|
#include "rtc_base/socket_server.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;
|
|
}
|