too tired to screw with this more tonight

This commit is contained in:
DarthArgus
2016-10-03 00:45:37 -05:00
parent e9c0f3a15d
commit 2d76f8ec0e
2 changed files with 2 additions and 2 deletions
@@ -116,7 +116,7 @@ void ConfigLoginServer::install(void)
KEY_BOOL(requireSecureLoginForCsTool, true);
KEY_BOOL(useExternalAuth, false);
KEY_STRING(externalAuthURL, "");
KEY_INT(maxConnectionsPerIP, 12); // assuming 2 people playing in the same household
KEY_INT(maxConnectionsPerIP, 4); // assuming 2 people playing in the same household
int index = 0;
char const * result = 0;
@@ -145,7 +145,7 @@ LoginServer::LoginServer() :
setup.port = ConfigLoginServer::getClientServicePort();
setup.maxConnections = ConfigLoginServer::getMaxClients();
setup.maxConnectionsPerIP = ConfigLoginServer::getMaxConnectionsPerIP();
setup.oldestUnacknowledgedTimeout = 10000;
setup.oldestUnacknowledgedTimeout = 30000;
setup.keepAliveDelay = 45000;
setup.compress = ConfigLoginServer::getCompressClientNetworkTraffic();
setup.useTcp = false;