Skip to content
Snippets Groups Projects
Commit 0142ed28 authored by Sébastien Blin's avatar Sébastien Blin Committed by Adrien Béraud
Browse files

ice_transport: stop send on cancellation

isCancelled_ wasn't used and cancelOperations should wake up
IceTransport::send to avoid any potential locks.

Change-Id: Ic5d412b5f0e8328f7c64d28dcab5710ed948ccd8
parent e845acb7
No related branches found
No related tags found
No related merge requests found
......@@ -90,8 +90,6 @@ public:
info->tls_->shutdown();
if (info->socket_)
info->socket_->shutdown();
if (info->ice_)
info->ice_->cancelOperations();
if (info->waitForAnswer_)
info->waitForAnswer_->cancel();
}
......@@ -1060,8 +1058,6 @@ ConnectionManager::Impl::addNewMultiplexedSocket(const CallbackId& id, const std
ids = std::move(info->cbIds_);
info->socket_->shutdown();
}
if (info->ice_)
info->ice_->cancelOperations();
}
for (const auto& cbId : ids)
for (const auto& pending : sthis->extractPendingCallbacks(cbId.first, cbId.second))
......@@ -1141,8 +1137,6 @@ ConnectionManager::closeConnectionsWith(const std::string& peerUri)
pimpl_->removeUnusedConnections(deviceId);
}
for (auto& info : connInfos) {
if (info->ice_)
info->ice_->cancelOperations();
if (info->socket_)
info->socket_->shutdown();
if (info->waitForAnswer_)
......
......@@ -236,6 +236,9 @@ public:
{
for (auto& c : peerChannels_)
c.stop();
std::lock_guard<std::mutex> lk(sendDataMutex_);
destroying_ = true;
waitDataCv_.notify_all();
}
};
......@@ -510,9 +513,6 @@ IceTransport::Impl::initIceInstance(const IceTransportOptions& options)
icecb.on_destroy = [](pj_ice_strans* ice_st) {
if (auto* tr = static_cast<Impl*>(pj_ice_strans_get_user_data(ice_st))) {
tr->cancelOperations(); // Avoid upper layer to manage this ; Stop read operations
std::lock_guard lk(tr->sendDataMutex_);
tr->destroying_ = true;
tr->waitDataCv_.notify_all(); // Stop write operations
} else {
JAMI_WARN("null IceTransport");
}
......@@ -1341,7 +1341,6 @@ IceTransport::startIce(const SDP& sdp)
void
IceTransport::cancelOperations()
{
isCancelled_ = true;
pimpl_->cancelOperations();
}
......
......@@ -246,7 +246,6 @@ public:
private:
class Impl;
bool isCancelled_ {false};
std::unique_ptr<Impl> pimpl_;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment