From 165f32aef96fe6463bc6c0c2784fa2f1ec066857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Sat, 3 Aug 2019 20:19:36 -0400 Subject: [PATCH] siptransport: show reused port Change-Id: I798040b3bc65c616cb32668af74cc0f3f276c72f --- src/sip/siptransport.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sip/siptransport.cpp b/src/sip/siptransport.cpp index c150bffdcf..c9b4e7b56e 100644 --- a/src/sip/siptransport.cpp +++ b/src/sip/siptransport.cpp @@ -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); } } -- GitLab