Skip to content

Commit 16f95dc

Browse files
Merge branch 'v0.18'
2 parents 960958d + 2ee1344 commit 16f95dc

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

src/impl/peerconnection.cpp

+8-16
Original file line numberDiff line numberDiff line change
@@ -424,15 +424,15 @@ void PeerConnection::forwardMessage(message_ptr message) {
424424
return;
425425
}
426426

427+
auto iceTransport = std::atomic_load(&mIceTransport);
428+
auto sctpTransport = std::atomic_load(&mSctpTransport);
429+
if (!iceTransport || !sctpTransport)
430+
return;
431+
427432
const uint16_t stream = uint16_t(message->stream);
428433
auto channel = findDataChannel(stream);
429434

430435
if (DataChannel::IsOpenMessage(message)) {
431-
auto iceTransport = getIceTransport();
432-
auto sctpTransport = getSctpTransport();
433-
if (!iceTransport || !sctpTransport)
434-
return;
435-
436436
const uint16_t remoteParity = (iceTransport->role() == Description::Role::Active) ? 1 : 0;
437437
if (stream % 2 != remoteParity) {
438438
// The odd/even rule is violated, close the DataChannel
@@ -462,9 +462,7 @@ void PeerConnection::forwardMessage(message_ptr message) {
462462

463463
// Invalid, close the DataChannel
464464
PLOG_WARNING << "Got unexpected message on stream " << stream;
465-
if (auto sctpTransport = getSctpTransport())
466-
sctpTransport->closeStream(message->stream);
467-
465+
sctpTransport->closeStream(message->stream);
468466
return;
469467
}
470468

@@ -591,7 +589,7 @@ shared_ptr<DataChannel> PeerConnection::emplaceDataChannel(string label, DataCha
591589
lock.unlock(); // we are going to call assignDataChannels()
592590

593591
// If SCTP is connected, assign and open now
594-
auto sctpTransport = getSctpTransport();
592+
auto sctpTransport = std::atomic_load(&mSctpTransport);
595593
if (sctpTransport && sctpTransport->state() == SctpTransport::State::Connected) {
596594
assignDataChannels();
597595
channel->open(sctpTransport);
@@ -617,7 +615,7 @@ uint16_t PeerConnection::maxDataChannelStream() const {
617615
void PeerConnection::assignDataChannels() {
618616
std::unique_lock lock(mDataChannelsMutex); // we are going to emplace
619617

620-
auto iceTransport = getIceTransport();
618+
auto iceTransport = std::atomic_load(&mIceTransport);
621619
if (!iceTransport)
622620
throw std::logic_error("Attempted to assign DataChannels without ICE transport");
623621

@@ -1019,12 +1017,6 @@ void PeerConnection::processRemoteDescription(Description description) {
10191017
mRemoteDescription->addCandidates(std::move(existingCandidates));
10201018
}
10211019

1022-
auto iceTransport = initIceTransport();
1023-
if (!iceTransport)
1024-
return; // closed
1025-
1026-
iceTransport->setRemoteDescription(std::move(description));
1027-
10281020
if (description.hasApplication()) {
10291021
auto dtlsTransport = std::atomic_load(&mDtlsTransport);
10301022
auto sctpTransport = std::atomic_load(&mSctpTransport);

src/peerconnection.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,14 @@ void PeerConnection::setRemoteDescription(Description description) {
218218
// Candidates will be added at the end, extract them for now
219219
auto remoteCandidates = description.extractCandidates();
220220
auto type = description.type();
221-
impl()->processRemoteDescription(std::move(description));
222221

222+
auto iceTransport = impl()->initIceTransport();
223+
if (!iceTransport)
224+
return; // closed
225+
226+
iceTransport->setRemoteDescription(description); // ICE transport might reject the description
227+
228+
impl()->processRemoteDescription(std::move(description));
223229
impl()->changeSignalingState(newSignalingState);
224230
signalingLock.unlock();
225231

0 commit comments

Comments
 (0)