Home | History | Annotate | Download | only in client

Lines Matching refs:AllocationSequence

167     // AllocationSequence should clear it's map entry for turn ports before
287 for (std::vector<AllocationSequence*>::iterator it = sequences_.begin();
289 if ((*it)->state() == AllocationSequence::kStopped) {
380 // New AllocationSequence would have nothing to do, so don't make it.
384 AllocationSequence* sequence =
385 new AllocationSequence(this, networks[i], config, sequence_flags);
406 for (AllocationSequence* sequence : sequences_) {
433 AllocationSequence * seq,
564 void BasicPortAllocatorSession::OnProtocolEnabled(AllocationSequence* seq,
623 AllocationSequence* seq) {
629 // Send signal only if all required AllocationSequence objects
635 for (std::vector<AllocationSequence*>::iterator it = sequences_.begin();
637 if ((*it)->state() == AllocationSequence::kRunning)
710 // AllocationSequence
712 AllocationSequence::AllocationSequence(BasicPortAllocatorSession* session,
727 bool AllocationSequence::Init() {
734 this, &AllocationSequence::OnReadPacket);
742 void AllocationSequence::Clear() {
747 void AllocationSequence::OnNetworkRemoved() {
753 AllocationSequence::~AllocationSequence() {
757 void AllocationSequence::DisableEquivalentPhases(rtc::Network* network,
792 void AllocationSequence::Start() {
797 void AllocationSequence::Stop() {
805 void AllocationSequence::OnMessage(rtc::Message* msg) {
848 // If all phases in AllocationSequence are completed, no allocation
855 void AllocationSequence::EnableProtocol(ProtocolType proto) {
862 bool AllocationSequence::ProtocolEnabled(ProtocolType proto) const {
871 void AllocationSequence::CreateUDPPorts() {
873 LOG(LS_VERBOSE) << "AllocationSequence: UDP ports disabled, skipping.";
900 port->SignalDestroyed.connect(this, &AllocationSequence::OnPortDestroyed);
905 LOG(LS_INFO) << "AllocationSequence: UDPPort will be handling the "
916 void AllocationSequence::CreateTCPPorts() {
918 LOG(LS_VERBOSE) << "AllocationSequence: TCP ports disabled, skipping.";
936 void AllocationSequence::CreateStunPorts() {
938 LOG(LS_VERBOSE) << "AllocationSequence: STUN ports disabled, skipping.";
948 << "AllocationSequence: No STUN server configured, skipping.";
967 void AllocationSequence::CreateRelayPorts() {
969 LOG(LS_VERBOSE) << "AllocationSequence: Relay ports disabled, skipping.";
978 << "AllocationSequence: No relay server configured, skipping.";
995 void AllocationSequence::CreateGturnPort(const RelayServerConfig& config) {
1026 void AllocationSequence::CreateTurnPort(const RelayServerConfig& config) {
1051 // Listen to the port destroyed signal, to allow AllocationSequence to
1053 port->SignalDestroyed.connect(this, &AllocationSequence::OnPortDestroyed);
1070 void AllocationSequence::OnReadPacket(
1107 void AllocationSequence::OnPortDestroyed(PortInterface* port) {