HomeSort by relevance Sort by last modified time
    Searched refs:ice_pwd (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocator.cc 37 const std::string& ice_pwd,
47 password_(flags_ & PORTALLOCATOR_ENABLE_SHARED_UFRAG ? ice_pwd : "") {
62 const std::string& ice_pwd) {
67 // |ice_ufrag| and |ice_pwd|.
68 // Ideally |ice_ufrag| and |ice_pwd| should change together, but
69 // there can be instances where only ice_pwd will be changed.
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);
transportdescription.h 109 const std::string& ice_pwd,
117 ice_pwd(ice_pwd),
124 const std::string& ice_pwd)
127 ice_pwd(ice_pwd),
134 ice_pwd(from.ice_pwd),
148 ice_pwd = from.ice_pwd;
178 std::string ice_pwd; member in struct:cricket::TransportDescription
    [all...]
transportdescriptionfactory.cc 65 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH);
68 desc->ice_pwd = current_description->ice_pwd;
118 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH);
121 desc->ice_pwd = current_description->ice_pwd;
transportchannelimpl.h 64 const std::string& ice_pwd) = 0;
68 const std::string& ice_pwd) = 0;
rawtransportchannel.h 75 const std::string& ice_pwd) {}
77 const std::string& ice_pwd) {}
105 virtual void SetIcePwd(const std::string& ice_pwd) {}
dtlstransportchannel.h 206 const std::string& ice_pwd) {
207 channel_->SetIceCredentials(ice_ufrag, ice_pwd);
210 const std::string& ice_pwd) {
211 channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd);
transportdescriptionfactory_unittest.cc 50 const std::string& ice_pwd, const std::string& dtls_alg) {
54 if (ice_ufrag.empty() && ice_pwd.empty()) {
58 desc->ice_pwd.size());
61 EXPECT_EQ(ice_pwd, desc->ice_pwd);
114 EXPECT_NE(org_desc->ice_pwd, restart_desc->ice_pwd);
119 restart_desc->ice_pwd.size());
202 old_desc->ice_ufrag, old_desc->ice_pwd, digest_alg);
307 old_desc->ice_ufrag, old_desc->ice_pwd, "");
    [all...]
portallocator.h 81 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd.
142 const std::string& ice_pwd);
192 const std::string& ice_pwd) = 0;
fakesession.h 87 const std::string& ice_pwd() const { return ice_pwd_; } function in class:cricket::FakeTransportChannel
112 const std::string& ice_pwd) {
114 ice_pwd_ = ice_pwd;
117 const std::string& ice_pwd) {
119 remote_ice_pwd_ = ice_pwd;
p2ptransportchannel.h 86 const std::string& ice_pwd);
88 const std::string& ice_pwd);
transport.cc 100 if (desc.ice_ufrag.empty() && desc.ice_pwd.empty())
107 if (desc.ice_pwd.length() < ICE_PWD_MIN_LENGTH ||
108 desc.ice_pwd.length() > ICE_PWD_MAX_LENGTH) {
135 return IceCredentialsChanged(old_desc.ice_ufrag, old_desc.ice_pwd,
136 new_desc.ice_ufrag, new_desc.ice_pwd);
816 local_description_->ice_pwd);
823 remote_description_->ice_pwd);
p2ptransportchannel.cc 256 const std::string& ice_pwd) {
263 IceCredentialsChanged(ice_ufrag_, ice_pwd_, ice_ufrag, ice_pwd);
267 ice_pwd_ = ice_pwd;
276 const std::string& ice_pwd) {
281 (remote_ice_pwd_!= ice_pwd);
285 remote_ice_pwd_ = ice_pwd;
    [all...]
dtlstransportchannel_unittest.cc 544 EXPECT_EQ(kIcePwd1, channel1->ice_pwd());
563 EXPECT_EQ(kIcePwd1, channel1->ice_pwd());
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 51 const std::string& ice_pwd)
52 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
125 const std::string& ice_pwd) {
127 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
httpportallocator.h 67 const std::string& ice_pwd) = 0;
113 const std::string& ice_pwd,
161 const std::string& ice_ufrag, const std::string& ice_pwd);
171 const std::string& ice_pwd,
httpportallocator.cc 126 const std::string& ice_pwd,
132 ice_ufrag, ice_pwd),
261 const std::string& ice_ufrag, const std::string& ice_pwd) {
263 ice_ufrag, ice_pwd, stun_hosts(),
275 const std::string& ice_pwd,
281 ice_ufrag, ice_pwd, stun_hosts,
connectivitychecker_unittest.cc 114 const std::string& ice_ufrag, const std::string& ice_pwd,
123 ice_pwd,
172 const std::string& ice_ufrag, const std::string& ice_pwd) {
181 ice_pwd,
basicportallocator.h 101 const std::string& ice_pwd);
123 const std::string& ice_pwd);
connectivitychecker.h 121 const std::string& ice_pwd,
127 allocator, content_name, component, ice_ufrag, ice_pwd, stun_hosts,
basicportallocator.cc 228 const std::string& ice_ufrag, const std::string& ice_pwd) {
230 this, content_name, component, ice_ufrag, ice_pwd);
240 const std::string& ice_pwd)
242 ice_ufrag, ice_pwd, allocator->flags()),
    [all...]
connectivitychecker.cc 74 const std::string& ice_pwd) {
76 ice_ufrag, ice_pwd,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepsessiondescription.cc 143 updated_candidate.set_password(transport_info->description.ice_pwd);
peerconnection_unittest.cc 323 IceUfragPwdPair(transport_desc->ice_ufrag, transport_desc->ice_pwd);
327 EXPECT_NE(ufrag_pwd.second, transport_desc->ice_pwd);
331 EXPECT_EQ(ufrag_pwd.second, transport_desc->ice_pwd);
    [all...]
webrtcsdp_unittest.cc 927 const char ice_pwd[] = "a=ice-pwd"; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 295 EXPECT_EQ(current_audio_pwd, ti_audio->description.ice_pwd);
300 ti_audio->description.ice_pwd.size());
312 EXPECT_EQ(ti_audio->description.ice_pwd,
313 ti_video->description.ice_pwd);
317 EXPECT_EQ(current_video_pwd, ti_video->description.ice_pwd);
322 ti_video->description.ice_pwd.size());
334 EXPECT_EQ(ti_audio->description.ice_pwd,
335 ti_data->description.ice_pwd);
339 EXPECT_EQ(current_data_pwd, ti_data->description.ice_pwd);
344 ti_data->description.ice_pwd.size())
    [all...]

Completed in 456 milliseconds

1 2