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

[#3649] Add default value for accounts configuration

parent 532b35b1
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,35 @@ SIPAccount::SIPAccount (const AccountID& accountID) ...@@ -57,7 +57,35 @@ SIPAccount::SIPAccount (const AccountID& accountID)
, _tlsSetting (NULL) , _tlsSetting (NULL)
, _dtmfType(OVERRTP) , _dtmfType(OVERRTP)
, _displayName ("") , _displayName ("")
, _tlsEnable(false)
, _tlsPortStr("")
, _tlsCaListFile("")
, _tlsCertificateFile("")
, _tlsPrivateKeyFile("")
, _tlsPassword("")
, _tlsMethod("")
, _tlsCiphers("")
, _tlsServerName("")
, _tlsVerifyServer(false)
, _tlsVerifyClient(false)
, _tlsRequireClientCertificate(false)
, _tlsNegotiationTimeoutSec("")
, _tlsNegotiationTimeoutMsec("")
, _stunServer("")
, _tlsEnabled(false)
, _stunEnabled(false)
, _routeset("")
// , _realm("")
, _authenticationUsename("")
, _tlsListenerPort("5061")
, _dtmfType("")
, _srtpEnabled(false)
, _srtpKeyExchange("")
, _srtpFallback(false)
, _zrtpDisplaySas(false)
, _zrtpDisplaySasOnce(false)
, _zrtpHelloHash(false)
, _zrtpNotSuppWarning(false)
{ {
// IP2IP settings must be loaded before singleton instanciation, cannot call it here... // IP2IP settings must be loaded before singleton instanciation, cannot call it here...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment