Revert "try some more dnc sourced changes...if this is whitespace only, please ignore"

This reverts commit 21eaf66597.

Conflicts:
	engine/shared/library/sharedNetwork/src/shared/NetworkHandler.cpp
This commit is contained in:
CodeCodon
2015-08-09 18:11:13 -05:00
parent cc17520cdb
commit 36ea3085ec
9 changed files with 19 additions and 19 deletions
@@ -70,7 +70,7 @@ void LoggingServerApi::Connect(const char *address, int port, const char *loginN
params.port = 0;
params.pooledPacketMax = 1000;
params.reliable[0].maxInstandingPackets = 512;
params.reliable[0].maxOutstandingBytes = 1 * 1024;
params.reliable[0].maxOutstandingBytes = 128 * 1024;
params.reliable[0].congestionWindowMinimum = 50000;
params.reliable[0].maxOutstandingPackets = 512;
params.reliable[0].processOnSend = false;
@@ -518,12 +518,12 @@ void ConfigSharedNetwork::install(int newClockSyncDelay)
KEY_INT (incomingBufferSize, 4 * 1024 * 1024);
KEY_INT (outgoingBufferSize, 4 * 1024 * 1024);
KEY_INT (maxConnections, 1000);
KEY_INT (maxRawPacketSize, 1460);
KEY_INT (maxRawPacketSize, 496);
KEY_INT (maxInstandingPackets, 400);
KEY_INT (maxOutstandingBytes, 1 * 1024);
KEY_INT (maxOutstandingBytes, 200 * 1024);
KEY_INT (maxOutstandingPackets, 400);
KEY_BOOL (processOnSend, false);
KEY_BOOL (processIcmpErrors, false);
KEY_BOOL (processIcmpErrors, true);
KEY_INT (fragmentSize, 496);
KEY_INT (pooledPacketMax, 1024);
KEY_INT (pooledPacketSize, -1);
@@ -555,7 +555,7 @@ void ConfigSharedNetwork::install(int newClockSyncDelay)
KEY_BOOL (allowPortRemapping, true);
KEY_BOOL (useTcp, true);
KEY_INT (tcpMinimumFrame, 1000);
KEY_BOOL (reportUdpDisconnects, true);
KEY_BOOL (reportUdpDisconnects, false);
KEY_BOOL (reportTcpDisconnects, true);
KEY_BOOL (logConnectionConstructionDestruction, false);
KEY_BOOL (logConnectionOpenedClosed, false);