Lines Matching refs:remote_candidate_
219 remote_candidate_(remote_candidate), in Connection()
261 return remote_candidate_; in remote_candidate()
288 d = remote_candidate_.priority(); in priority()
290 g = remote_candidate_.priority(); in priority()
436 port_->SendTo(data, size, remote_candidate_.address(), options, false); in OnSendStunPacket()
451 const rtc::SocketAddress& addr(remote_candidate_.address()); in OnReadPacket()
502 if (remote_ufrag == remote_candidate_.username()) { in OnReadPacket()
577 const rtc::SocketAddress& remote_addr = remote_candidate_.address(); in HandleStunBindingOrGoogPingRequest()
580 const std::string& remote_ufrag = remote_candidate_.username(); in HandleStunBindingOrGoogPingRequest()
635 if (network_cost != remote_candidate_.network_cost()) { in HandleStunBindingOrGoogPingRequest()
636 remote_candidate_.set_network_cost(network_cost); in HandleStunBindingOrGoogPingRequest()
680 STUN_ATTR_XOR_MAPPED_ADDRESS, remote_candidate_.address())); in SendStunBindingResponse()
716 const rtc::SocketAddress& addr = remote_candidate_.address(); in SendResponseMessage()
946 message->AddMessageIntegrity32(remote_candidate_.password()); in Ping()
966 port()->CreateStunUsername(remote_candidate_.username()))); in BuildPingRequest()
1015 message->AddMessageIntegrity(remote_candidate_.password()); in BuildPingRequest()
1212 return port()->network_cost() + remote_candidate_.network_cost(); in ComputeNetworkCost()
1457 if (remote_candidate_.username() == ice_params.ufrag && in MaybeSetRemoteIceParametersAndGeneration()
1458 remote_candidate_.password().empty()) { in MaybeSetRemoteIceParametersAndGeneration()
1459 remote_candidate_.set_password(ice_params.pwd); in MaybeSetRemoteIceParametersAndGeneration()
1464 if (remote_candidate_.username() == ice_params.ufrag && in MaybeSetRemoteIceParametersAndGeneration()
1465 remote_candidate_.password() == ice_params.pwd && in MaybeSetRemoteIceParametersAndGeneration()
1466 remote_candidate_.generation() == 0) { in MaybeSetRemoteIceParametersAndGeneration()
1467 remote_candidate_.set_generation(generation); in MaybeSetRemoteIceParametersAndGeneration()
1473 if (remote_candidate_.type() == PRFLX_PORT_TYPE && in MaybeUpdatePeerReflexiveCandidate()
1475 remote_candidate_.protocol() == new_candidate.protocol() && in MaybeUpdatePeerReflexiveCandidate()
1476 remote_candidate_.address() == new_candidate.address() && in MaybeUpdatePeerReflexiveCandidate()
1477 remote_candidate_.username() == new_candidate.username() && in MaybeUpdatePeerReflexiveCandidate()
1478 remote_candidate_.password() == new_candidate.password() && in MaybeUpdatePeerReflexiveCandidate()
1479 remote_candidate_.generation() == new_candidate.generation()) { in MaybeUpdatePeerReflexiveCandidate()
1480 remote_candidate_ = new_candidate; in MaybeUpdatePeerReflexiveCandidate()
1692 port_->SendTo(data, size, remote_candidate_.address(), options, true); in Send()