1
0
Fork 0

Revert "Only one instance of server can be started"

This reverts commit 6484e9814a.

* Fixes #1200
This commit is contained in:
Tiger Wang 2014-07-20 13:49:15 +01:00
parent ba24f50e5e
commit 2823ee9026
1 changed files with 2 additions and 0 deletions

View File

@ -222,12 +222,14 @@ bool cServer::InitServer(cIniFile & a_SettingsIni)
bool HasAnyPorts = false;
AString Ports = a_SettingsIni.GetValueSet("Server", "Port", "25565");
m_ListenThreadIPv4.SetReuseAddr(true);
if (m_ListenThreadIPv4.Initialize(Ports))
{
HasAnyPorts = true;
}
Ports = a_SettingsIni.GetValueSet("Server", "PortsIPv6", "25565");
m_ListenThreadIPv6.SetReuseAddr(true);
if (m_ListenThreadIPv6.Initialize(Ports))
{
HasAnyPorts = true;