Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
3dd14d02
Commit
3dd14d02
authored
Feb 10, 2009
by
Emmanuel Milou
Browse files
Daemon less verbose; accounts don't try to access STUn options anymore
parent
be77e8eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/dbus/configurationmanager.cpp
View file @
3dd14d02
...
...
@@ -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
);
}
...
...
src/managerimpl.cpp
View file @
3dd14d02
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment