From 42c91aa6b5956a663e060bfdc63ae0e367c770f2 Mon Sep 17 00:00:00 2001 From: In-line Date: Sat, 13 Jan 2018 12:15:27 +0400 Subject: [PATCH] Enable IPTOS_LOWDELAY by default --- rehlds/engine/net_ws.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rehlds/engine/net_ws.cpp b/rehlds/engine/net_ws.cpp index 2056bd9..4038f15 100644 --- a/rehlds/engine/net_ws.cpp +++ b/rehlds/engine/net_ws.cpp @@ -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");