Ref T249, using FSC server as obfuscated server

Only show in local builds
This commit is contained in:
Klaus Basan
2018-02-11 07:17:51 +01:00
parent 3307560db9
commit 9009045dd0
5 changed files with 14 additions and 3 deletions

View File

@@ -75,6 +75,14 @@ namespace BlackMisc
return withPw ? dvp : dvnp;
}
const CServer &CServer::fscServer()
{
static const CServer fsc("FSC", "FSC e.V.", "OBF:AwJIKfgkQDJEIRnno29DJlB+UK0=", 6809,
CUser(),
CFsdSetup(), CEcosystem(CEcosystem::privateFsd()), CServer::FSDServer);
return fsc;
}
bool CServer::matchesName(const QString &name) const
{
return m_name.length() == name.length() &&

View File

@@ -205,6 +205,9 @@ namespace BlackMisc
//! swift FSD test server
static const CServer &swiftFsdTestServer(bool withPw = false);
//! FSC server
static const CServer &fscServer();
private:
QString m_name;
QString m_description;