Searched refs:ice_ufrag (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportallocator.cc36 const std::string& ice_ufrag,
46 username_(flags_ & PORTALLOCATOR_ENABLE_SHARED_UFRAG ? ice_ufrag : ""),
61 const std::string& ice_ufrag,
67 // |ice_ufrag| and |ice_pwd|.
68 // Ideally |ice_ufrag| and |ice_pwd| should change together, but
70 std::string key_str = ice_ufrag + ":" + ice_pwd;
74 content_name, component, ice_ufrag, ice_pwd);
87 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
34 PortAllocatorSession(const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, uint32 flags) argument
57 CreateSession( const std::string& sid, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
H A Dtransportdescription.h108 const std::string& ice_ufrag,
116 ice_ufrag(ice_ufrag),
123 const std::string& ice_ufrag,
126 ice_ufrag(ice_ufrag),
133 ice_ufrag(from.ice_ufrag),
147 ice_ufrag = from.ice_ufrag;
106 TransportDescription(const std::string& transport_type, const std::vector<std::string>& transport_options, const std::string& ice_ufrag, const std::string& ice_pwd, IceMode ice_mode, ConnectionRole role, const rtc::SSLFingerprint* identity_fingerprint, const Candidates& candidates) argument
122 TransportDescription(const std::string& transport_type, const std::string& ice_ufrag, const std::string& ice_pwd) argument
177 std::string ice_ufrag; member in struct:cricket::TransportDescription
[all...]
H A Dtransportdescriptionfactory.cc64 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH);
67 desc->ice_ufrag = current_description->ice_ufrag;
117 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH);
120 desc->ice_ufrag = current_description->ice_ufrag;
H A Dtransportchannelimpl.h63 virtual void SetIceCredentials(const std::string& ice_ufrag,
67 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
H A Drawtransportchannel.h74 virtual void SetIceCredentials(const std::string& ice_ufrag, argument
76 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag, argument
104 virtual void SetIceUfrag(const std::string& ice_ufrag) {} argument
H A Ddtlstransportchannel.h205 virtual void SetIceCredentials(const std::string& ice_ufrag, argument
207 channel_->SetIceCredentials(ice_ufrag, ice_pwd);
209 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag, argument
211 channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd);
H A Dtransportdescriptionfactory_unittest.cc49 const std::string& opt, const std::string& ice_ufrag,
54 if (ice_ufrag.empty() && ice_pwd.empty()) {
56 desc->ice_ufrag.size());
60 EXPECT_EQ(ice_ufrag, desc->ice_ufrag);
115 EXPECT_NE(org_desc->ice_ufrag, restart_desc->ice_ufrag);
117 restart_desc->ice_ufrag.size());
202 old_desc->ice_ufrag, old_desc->ice_pwd, digest_alg);
307 old_desc->ice_ufrag, old_des
48 CheckDesc(const TransportDescription* desc, const std::string& type, const std::string& opt, const std::string& ice_ufrag, const std::string& ice_pwd, const std::string& dtls_alg) argument
[all...]
H A Dportallocator.h81 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd.
141 const std::string& ice_ufrag,
191 const std::string& ice_ufrag,
H A Dfakesession.h86 const std::string& ice_ufrag() const { return ice_ufrag_; } function in class:cricket::FakeTransportChannel
111 virtual void SetIceCredentials(const std::string& ice_ufrag, argument
113 ice_ufrag_ = ice_ufrag;
116 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag, argument
118 remote_ice_ufrag_ = ice_ufrag;
H A Dp2ptransportchannel.h85 virtual void SetIceCredentials(const std::string& ice_ufrag,
87 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
H A Dtransport.cc100 if (desc.ice_ufrag.empty() && desc.ice_pwd.empty())
103 if (desc.ice_ufrag.length() < ICE_UFRAG_MIN_LENGTH ||
104 desc.ice_ufrag.length() > ICE_UFRAG_MAX_LENGTH) {
135 return IceCredentialsChanged(old_desc.ice_ufrag, old_desc.ice_pwd,
136 new_desc.ice_ufrag, new_desc.ice_pwd);
815 ch->SetIceCredentials(local_description_->ice_ufrag,
822 ch->SetRemoteIceCredentials(remote_description_->ice_ufrag,
H A Dp2ptransportchannel.cc255 void P2PTransportChannel::SetIceCredentials(const std::string& ice_ufrag, argument
263 IceCredentialsChanged(ice_ufrag_, ice_pwd_, ice_ufrag, ice_pwd);
266 ice_ufrag_ = ice_ufrag;
275 void P2PTransportChannel::SetRemoteIceCredentials(const std::string& ice_ufrag, argument
280 ice_restart = (remote_ice_ufrag_ != ice_ufrag) ||
284 remote_ice_ufrag_ = ice_ufrag;
H A Ddtlstransportchannel_unittest.cc543 EXPECT_EQ(kIceUfrag1, channel1->ice_ufrag());
562 EXPECT_EQ(kIceUfrag1, channel1->ice_ufrag());
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dfakeportallocator.h50 const std::string& ice_ufrag,
52 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
124 const std::string& ice_ufrag,
127 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
46 FakePortAllocatorSession(rtc::Thread* worker_thread, rtc::PacketSocketFactory* factory, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
121 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
H A Dhttpportallocator.h66 const std::string& ice_ufrag,
112 const std::string& ice_ufrag,
161 const std::string& ice_ufrag, const std::string& ice_pwd);
170 const std::string& ice_ufrag,
H A Dhttpportallocator.cc125 const std::string& ice_ufrag,
132 ice_ufrag, ice_pwd),
261 const std::string& ice_ufrag, const std::string& ice_pwd) {
263 ice_ufrag, ice_pwd, stun_hosts(),
274 const std::string& ice_ufrag,
281 ice_ufrag, ice_pwd, stun_hosts,
121 HttpPortAllocatorSessionBase( HttpPortAllocatorBase* allocator, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, const std::vector<rtc::SocketAddress>& stun_hosts, const std::vector<std::string>& relay_hosts, const std::string& relay_token, const std::string& user_agent) argument
258 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
270 HttpPortAllocatorSession( HttpPortAllocator* allocator, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, const std::vector<rtc::SocketAddress>& stun_hosts, const std::vector<std::string>& relay_hosts, const std::string& relay, const std::string& agent) argument
H A Dconnectivitychecker_unittest.cc114 const std::string& ice_ufrag, const std::string& ice_pwd,
122 ice_ufrag,
172 const std::string& ice_ufrag, const std::string& ice_pwd) {
180 ice_ufrag,
110 FakeHttpPortAllocatorSession( HttpPortAllocator* allocator, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, const std::vector<rtc::SocketAddress>& stun_hosts, const std::vector<std::string>& relay_hosts, const std::string& relay_token, const std::string& agent) argument
170 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
H A Dbasicportallocator.h100 const std::string& ice_ufrag,
122 const std::string& ice_ufrag,
H A Dconnectivitychecker.h120 const std::string& ice_ufrag,
127 allocator, content_name, component, ice_ufrag, ice_pwd, stun_hosts,
116 TestHttpPortAllocatorSession( HttpPortAllocator* allocator, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, const std::vector<rtc::SocketAddress>& stun_hosts, const std::vector<std::string>& relay_hosts, const std::string& relay_token, const std::string& user_agent) argument
H A Dbasicportallocator.cc228 const std::string& ice_ufrag, const std::string& ice_pwd) {
230 this, content_name, component, ice_ufrag, ice_pwd);
239 const std::string& ice_ufrag,
242 ice_ufrag, ice_pwd, allocator->flags()),
226 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
235 BasicPortAllocatorSession( BasicPortAllocator *allocator, const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
H A Dconnectivitychecker.cc73 const std::string& ice_ufrag,
76 ice_ufrag, ice_pwd,
70 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsepsessiondescription.cc140 updated_candidate.set_username(transport_info->description.ice_ufrag);
H A Dpeerconnection_unittest.cc323 IceUfragPwdPair(transport_desc->ice_ufrag, transport_desc->ice_pwd);
326 EXPECT_NE(ufrag_pwd.first, transport_desc->ice_ufrag);
330 EXPECT_EQ(ufrag_pwd.first, transport_desc->ice_ufrag);
H A Dwebrtcsdp_unittest.cc868 EXPECT_EQ(transport1.description.ice_ufrag,
869 transport2.description.ice_ufrag);
925 const char ice_ufrag[] = "a=ice-ufrag"; local
929 rtc::replace_substrs(ice_ufrag, strlen(ice_ufrag),
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession_unittest.cc294 EXPECT_EQ(current_audio_ufrag, ti_audio->description.ice_ufrag);
298 ti_audio->description.ice_ufrag.size());
310 EXPECT_EQ(ti_audio->description.ice_ufrag,
311 ti_video->description.ice_ufrag);
316 EXPECT_EQ(current_video_ufrag, ti_video->description.ice_ufrag);
320 ti_video->description.ice_ufrag.size());
332 EXPECT_EQ(ti_audio->description.ice_ufrag,
333 ti_data->description.ice_ufrag);
338 EXPECT_EQ(current_data_ufrag, ti_data->description.ice_ufrag);
342 ti_data->description.ice_ufrag
[all...]

Completed in 1167 milliseconds

12