Skip to content
Snippets Groups Projects
Commit 3dd14d02 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Daemon less verbose; accounts don't try to access STUn options anymore

parent be77e8eb
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ const char* ConfigurationManager::SERVER_PATH = "/org/sflphone/SFLphone/Configur
std::map< std::string, std::string >
ConfigurationManager::getAccountDetails( const std::string& accountID )
{
_debug("ConfigurationManager::getAccountDetails received\n");
return Manager::instance().getAccountDetails(accountID);
}
......
......@@ -1975,13 +1975,6 @@ std::map< std::string, std::string > ManagerImpl::getAccountDetails(const Accoun
a.insert( std::pair<std::string, std::string>( HOSTNAME, getConfigString(accountID, HOSTNAME) ) );
a.insert( std::pair<std::string, std::string>( CONFIG_ACCOUNT_MAILBOX, getConfigString(accountID, CONFIG_ACCOUNT_MAILBOX)) );
// SIP SPECIFIC
if( accountType == "SIP")
{
a.insert( std::pair<std::string, std::string>( SIP_STUN_SERVER, getConfigString(accountID, SIP_STUN_SERVER) ) );
a.insert( std::pair<std::string, std::string>( SIP_USE_STUN, getConfigString(accountID, SIP_USE_STUN) == "1" ? "TRUE": "FALSE"));
}
return a;
}
......
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