refactor: Remove old AFV test server

This commit is contained in:
Lars Toenning
2023-12-27 12:49:36 +01:00
parent f52017df9e
commit e4a8e44701
3 changed files with 3 additions and 17 deletions

View File

@@ -245,12 +245,9 @@ namespace BlackCore::Data
CServerList CGlobalSetup::getPredefinedServersPlusHardcodedServers() const
{
static const CServerList hardcoded(
{
CServer::swiftFsdTestServer(),
CServer::fscFsdServer(),
CServer::esTowerView()
// CServer::afvFsdTestServer(),
});
{ CServer::swiftFsdTestServer(),
CServer::fscFsdServer(),
CServer::esTowerView() });
CServerList testServers(m_predefinedServers);
testServers.addIfAddressNotExists(hardcoded);
return testServers;

View File

@@ -79,14 +79,6 @@ namespace BlackMisc::Network
return fsc;
}
const CServer &CServer::afvFsdTestServer()
{
static const CServer afv("AFV testserver", "VATSIM AFV testserver", "afv-beta-fsd.vatsim.net", 6809,
CUser("OBF:AwLZ7f9hUmpSZhm4=", "OBF:AwJGiYV4GHQSMizchFk2=", "", ""),
CFsdSetup(), CVoiceSetup(), CEcosystem(CEcosystem::vatsim()), CServer::FSDServerVatsim);
return afv;
}
const CServer &CServer::esTowerView()
{
static const CServer s = CServer("ES Tower", "Euroscope Tower view", "localhost", 6809,

View File

@@ -214,9 +214,6 @@ namespace BlackMisc::Network
//! FSC server
static const CServer &fscFsdServer();
//! The AFV test server
static const CServer &afvFsdTestServer();
//! ES tower server
static const CServer &esTowerView();