2
0
mirror of https://github.com/rehlds/rehlds.git synced 2024-12-26 14:45:44 +03:00

Enable IPTOS_LOWDELAY by default

This commit is contained in:
In-line 2018-01-13 12:15:27 +04:00 committed by GitHub
parent 01781eacc1
commit 42c91aa6b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1555,7 +1555,11 @@ SOCKET NET_IPSocket(char *net_interface, int port, qboolean multicast)
}
#ifndef _WIN32
#ifdef REHLDS_FIXES
if (!COM_CheckParm("-notos"))
#else
if (COM_CheckParm("-tos"))
#endif
{
i = 16;
Con_Printf("Enabling LOWDELAY TOS option\n");