| Index: webrtc/p2p/base/transport.cc
|
| diff --git a/webrtc/p2p/base/transport.cc b/webrtc/p2p/base/transport.cc
|
| index eff10aa0a9891a9508f2a7f1d1de8aab69bdf5b5..bac695d6b3d0c5b44486b32902171e570fa6404f 100644
|
| --- a/webrtc/p2p/base/transport.cc
|
| +++ b/webrtc/p2p/base/transport.cc
|
| @@ -236,10 +236,10 @@ void Transport::ConnectChannels() {
|
| // initiate request initiated by the remote.
|
| LOG(LS_INFO) << "Transport::ConnectChannels: No local description has "
|
| << "been set. Will generate one.";
|
| - TransportDescription desc(
|
| - std::vector<std::string>(), rtc::CreateRandomString(ICE_UFRAG_LENGTH),
|
| - rtc::CreateRandomString(ICE_PWD_LENGTH), ICEMODE_FULL,
|
| - CONNECTIONROLE_NONE, nullptr, Candidates());
|
| + TransportDescription desc(std::vector<std::string>(),
|
| + rtc::CreateRandomString(ICE_UFRAG_LENGTH),
|
| + rtc::CreateRandomString(ICE_PWD_LENGTH),
|
| + ICEMODE_FULL, CONNECTIONROLE_NONE, nullptr);
|
| SetLocalTransportDescription(desc, CA_OFFER, nullptr);
|
| }
|
|
|
|
|