Added: INI option to verify SSL cert

This commit is contained in:
Sepalani
2015-06-09 20:23:56 +02:00
parent d3be9d155d
commit 1fdf750395
3 changed files with 8 additions and 1 deletions

View File

@ -319,6 +319,7 @@ void SConfig::SaveNetworkSettings(IniFile& ini)
network->Set("SSLDumpRead", m_SSLDumpRead);
network->Set("SSLDumpWrite", m_SSLDumpWrite);
network->Set("SSLVerifyCert", m_SSLVerifyCert);
}
void SConfig::SaveAnalyticsSettings(IniFile& ini)
@ -618,6 +619,7 @@ void SConfig::LoadNetworkSettings(IniFile& ini)
network->Get("SSLDumpRead", &m_SSLDumpRead, false);
network->Get("SSLDumpWrite", &m_SSLDumpWrite, false);
network->Get("SSLVerifyCert", &m_SSLVerifyCert, false);
}
void SConfig::LoadAnalyticsSettings(IniFile& ini)