Skip to content
Snippets Groups Projects
Commit acbb8796 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#3946] A little cleanup

parent 5d79bb27
No related branches found
No related tags found
No related merge requests found
...@@ -1076,8 +1076,6 @@ std::string SIPAccount::getServerUri (void) ...@@ -1076,8 +1076,6 @@ std::string SIPAccount::getServerUri (void)
// UDP does not require the transport specification // UDP does not require the transport specification
_debug("---------------------------- _hostname %s", _hostname.c_str());
if (_transportType == PJSIP_TRANSPORT_TLS) { if (_transportType == PJSIP_TRANSPORT_TLS) {
scheme = "sips:"; scheme = "sips:";
transport = ";transport=" + std::string (pjsip_transport_get_type_name (_transportType)); transport = ";transport=" + std::string (pjsip_transport_get_type_name (_transportType));
......
...@@ -580,7 +580,6 @@ int SIPVoIPLink::sendRegister (AccountID id) ...@@ -580,7 +580,6 @@ int SIPVoIPLink::sendRegister (AccountID id)
std::string fromUri = account->getFromUri(); std::string fromUri = account->getFromUri();
std::string srvUri = account->getServerUri(); std::string srvUri = account->getServerUri();
_debug("----------------------------------------------- srvUri %s, %s", account->getAccountID().c_str(), srvUri.c_str());
std::string address = findLocalAddressFromUri (srvUri, account->getAccountTransport ()); std::string address = findLocalAddressFromUri (srvUri, account->getAccountTransport ());
int port = findLocalPortFromUri (srvUri, account->getAccountTransport ()); int port = findLocalPortFromUri (srvUri, account->getAccountTransport ());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment