OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RelayPort
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/p2p/base/
relayport.h
33
class
RelayPort
: public Port {
37
//
RelayPort
doesn't yet do anything fancy in the ctor.
38
static
RelayPort
* Create(rtc::Thread* thread,
46
return new
RelayPort
(thread, factory, network, ip, min_port, max_port,
49
~
RelayPort
() override;
76
RelayPort
(rtc::Thread* thread,
relayport.cc
12
#include "webrtc/p2p/base/
relayport
.h"
79
RelayEntry(
RelayPort
* port, const rtc::SocketAddress& ext_addr);
82
RelayPort
* port() { return port_; }
130
RelayPort
* port_;
181
RelayPort
::
RelayPort
(rtc::Thread* thread,
205
RelayPort
::~
RelayPort
() {
211
void
RelayPort
::AddServerAddress(const ProtocolAddress& addr) {
223
void
RelayPort
::AddExternalAddress(const ProtocolAddress& addr)
[
all
...]
relayport_unittest.cc
12
#include "webrtc/p2p/base/
relayport
.h"
36
// Tests connecting a
RelayPort
to a fake relay server
40
//
RelayPort
and created sockets by listening for signals such as,
56
relay_port_(cricket::
RelayPort
::Create(main_, &socket_factory_,
96
// PrepareAddress is called, the
RelayPort
will start trying to
99
//
RelayPort
will consider the connection to be complete and will
132
// connection has failed, the
RelayPort
will attempt to connect via
135
//
RelayPort
will try the TCP adress and succed.
157
// Wait until
relayport
is ready.
192
// Should have timed out in 3000 ms(
relayport
.cc, kSoftConnectTimeoutMs)
[
all
...]
port_unittest.cc
12
#include "webrtc/p2p/base/
relayport
.h"
514
RelayPort
* CreateGturnPort(const SocketAddress& addr,
516
RelayPort
* port = CreateGturnPort(addr);
522
RelayPort
* CreateGturnPort(const SocketAddress& addr) {
524
return
RelayPort
::Create(main_, &socket_factory_, &network_,
[
all
...]
/external/webrtc/webrtc/p2p/client/
basicportallocator.cc
20
#include "webrtc/p2p/base/
relayport
.h"
736
// Continuing if |udp_socket_| is NULL, as local TCP and
RelayPort
using TCP
996
// TODO(mallinath) - Rename
RelayPort
to GTurnPort.
997
RelayPort
* port =
RelayPort
::Create(session_->network_thread(),
[
all
...]
Completed in 173 milliseconds