Skip to content
Snippets Groups Projects
Commit 165f32ae authored by Adrien Béraud's avatar Adrien Béraud
Browse files

siptransport: show reused port

Change-Id: I798040b3bc65c616cb32668af74cc0f3f276c72f
parent 60335525
No related branches found
No related tags found
No related merge requests found
......@@ -308,13 +308,13 @@ SipTransportBroker::getUdpTransport(const IpAddr& ipAddress)
}
else {
// Transport still exists but have not been destroyed yet.
JAMI_WARN("Recycling transport %s", ipAddress.toString().c_str());
JAMI_WARN("Recycling transport %s", ipAddress.toString(true).c_str());
auto ret = std::make_shared<SipTransport>(itp->second);
it->second = ret;
return ret;
}
} else {
JAMI_WARN("Cleaning up UDP transport %s", ipAddress.toString().c_str());
JAMI_WARN("Cleaning up UDP transport %s", ipAddress.toString(true).c_str());
udpTransports_.erase(itp);
}
}
......
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