From 76335a5710e69752747741fd0b7c2a494728d277 Mon Sep 17 00:00:00 2001 From: stevenaaus Date: Tue, 25 Mar 2014 05:08:34 +0000 Subject: [PATCH] A couple of limit bumps. http://www.celephais.net/board/view_thread.php?id=60452&start=721 git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@897 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/net.h | 2 +- quakespasm/Quake/quakedef.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/quakespasm/Quake/net.h b/quakespasm/Quake/net.h index 45d40fdf..68b2cc31 100644 --- a/quakespasm/Quake/net.h +++ b/quakespasm/Quake/net.h @@ -33,7 +33,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define NET_NAMELEN 64 -#define NET_MAXMESSAGE 32000 /* johnfitz -- was 8192 */ +#define NET_MAXMESSAGE 65536 /* ericw -- was 32000 */ extern int DEFAULTnet_hostport; extern int net_hostport; diff --git a/quakespasm/Quake/quakedef.h b/quakespasm/Quake/quakedef.h index 506a04f8..ebdc622b 100644 --- a/quakespasm/Quake/quakedef.h +++ b/quakespasm/Quake/quakedef.h @@ -71,7 +71,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define DIST_EPSILON (0.03125) // 1/32 epsilon to keep floating point happy (moved from world.c) -#define MAX_MSGLEN 32000 // max length of a reliable message //johnfitz -- was 8000 +#define MAX_MSGLEN 65536 // max length of a reliable message //ericw -- was 32000 #define MAX_DATAGRAM 32000 // max length of unreliable message //johnfitz -- was 1024 #define DATAGRAM_MTU 1400 // johnfitz -- actual limit for unreliable messages to nonlocal clients