Skip to content
Snippets Groups Projects
Commit dbe4aff6 authored by Rafaël Carré's avatar Rafaël Carré
Browse files

* #6408 : send authenticationUsername to GUI

remove unused methods from SIPAccount
parent 420f1af2
No related branches found
No related tags found
No related merge requests found
...@@ -507,6 +507,7 @@ std::map<std::string, std::string> SIPAccount::getAccountDetails() const ...@@ -507,6 +507,7 @@ std::map<std::string, std::string> SIPAccount::getAccountDetails() const
a[CONFIG_ACCOUNT_RESOLVE_ONCE] = isResolveOnce() ? "true" : "false"; a[CONFIG_ACCOUNT_RESOLVE_ONCE] = isResolveOnce() ? "true" : "false";
a[REALM] = _realm; a[REALM] = _realm;
a[USERAGENT] = getUseragent(); a[USERAGENT] = getUseragent();
a[AUTHENTICATION_USERNAME] = _authenticationUsername;
a[CONFIG_ACCOUNT_REGISTRATION_EXPIRE] = getRegistrationExpire(); a[CONFIG_ACCOUNT_REGISTRATION_EXPIRE] = getRegistrationExpire();
a[LOCAL_INTERFACE] = getLocalInterface(); a[LOCAL_INTERFACE] = getLocalInterface();
......
...@@ -236,13 +236,6 @@ class SIPAccount : public Account ...@@ -236,13 +236,6 @@ class SIPAccount : public Account
return _cred; return _cred;
} }
const std::string& getAuthenticationUsername (void) const {
return _authenticationUsername;
}
void setAuthenticationUsername (const std::string& username) {
_authenticationUsername = username;
}
bool isResolveOnce (void) const { bool isResolveOnce (void) const {
return _resolveOnce; return _resolveOnce;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment