X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=quakedef.h;h=5165ef93c00fd32131afed6604d0c519b5291d35;hb=435b52972823fa8e8ceb9b67797ca3f886f6208a;hp=7ea3acb68a2059bffa000618d682a1230696209c;hpb=6b1d3ecfd70b811e74100db71cbd5b433579cca2;p=xonotic%2Fdarkplaces.git diff --git a/quakedef.h b/quakedef.h index 7ea3acb6..5165ef93 100644 --- a/quakedef.h +++ b/quakedef.h @@ -46,9 +46,9 @@ extern char *buildstring; #define ON_EPSILON 0.1 // point on plane side epsilon #define MAX_PACKETFRAGMENT 1024 // max length of packet fragment -// LordHavoc: this was 1024, now 65536 -#define MAX_DATAGRAM 65536 // max length of unreliable -#define MAX_NETRELIABLE 65536 // max length of reliable message (fragments into unreliable packets) +#define NET_MAXMESSAGE 65536 +#define NET_MINRATE 1000 // limits "rate" and "sv_maxrate" cvars +#define NET_MAXRATE 25000 // limits "rate" and "sv_maxrate" cvars // // per-level limits @@ -202,6 +202,7 @@ extern char *buildstring; #include "client.h" #include "render.h" #include "progs.h" +#include "progsvm.h" #include "server.h" #include "input.h" @@ -239,7 +240,6 @@ void Host_InitCommands(void); void Host_Init(void); void Host_Shutdown(void); void Host_Error(const char *error, ...); -void Host_EndGame(const char *message, ...); void Host_Frame(float time); void Host_Quit_f(void); void Host_ClientCommands(const char *fmt, ...);