mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
New server Cvar: sv_extensions. When set to zero, it disables the extended
challenge, causing QF clients to not detect a QuakeForge server. This makes the client not add the QF-specific info strings, in turn making it not overflow original QW clients' limited setinfo space. This also probably makes certain proxies work with QF servers again. It /also/ has the side effect of disabling compressed downloads. If you want compressed downloads, you need sv_extensions on. Also, remove the "stdver" setinfo in the client -- it's handled by *qsg_version if there's a QF server on the other end, so it was just wasted space.
This commit is contained in:
parent
24841130a7
commit
49d7b35d43
4 changed files with 96 additions and 116 deletions
|
@ -285,7 +285,7 @@ typedef struct
|
||||||
|
|
||||||
char levelname[40]; // for display on solo scoreboard
|
char levelname[40]; // for display on solo scoreboard
|
||||||
int playernum;
|
int playernum;
|
||||||
int stdver;
|
float stdver; // QSG version
|
||||||
|
|
||||||
// refresh related state
|
// refresh related state
|
||||||
struct model_s *worldmodel; // cl_entitites[0].model
|
struct model_s *worldmodel; // cl_entitites[0].model
|
||||||
|
|
|
@ -214,7 +214,7 @@ typedef struct client_s
|
||||||
netchan_t netchan;
|
netchan_t netchan;
|
||||||
int msecs, msec_cheating;
|
int msecs, msec_cheating;
|
||||||
double last_check;
|
double last_check;
|
||||||
int stdver;
|
float stdver; // QSG standards version
|
||||||
} client_t;
|
} client_t;
|
||||||
|
|
||||||
// a client can leave the server in one of four ways:
|
// a client can leave the server in one of four ways:
|
||||||
|
|
|
@ -576,19 +576,19 @@ CL_FullServerinfo_f (void)
|
||||||
|
|
||||||
if ((p = Info_ValueForKey (cl.serverinfo, "*qf_version")) && *p) {
|
if ((p = Info_ValueForKey (cl.serverinfo, "*qf_version")) && *p) {
|
||||||
if (server_version == NULL)
|
if (server_version == NULL)
|
||||||
Con_Printf ("QuakeForge Version %s Server\n", p);
|
Con_Printf ("QuakeForge v%s server\n", p);
|
||||||
server_version = strdup (p);
|
server_version = strdup (p);
|
||||||
} else if ((p = Info_ValueForKey (cl.serverinfo, "*version")) && *p) {
|
} else if ((p = Info_ValueForKey (cl.serverinfo, "*version")) && *p) {
|
||||||
if (server_version == NULL)
|
if (server_version == NULL)
|
||||||
Con_Printf ("Version %s Server\n", p);
|
Con_Printf ("QuakeWorld v%s server\n", p);
|
||||||
server_version = strdup (p);
|
server_version = strdup (p);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((p = Info_ValueForKey (cl.serverinfo, "*qsg_version")) && *p) {
|
if ((p = Info_ValueForKey (cl.serverinfo, "*qsg_version")) && *p) {
|
||||||
if ((cl.stdver = atoi (p)))
|
if ((cl.stdver = atof (p)))
|
||||||
Con_Printf ("QSG Standard version %i\n", cl.stdver);
|
Con_Printf ("Server supports QSG v%s protocol\n", p);
|
||||||
else
|
else
|
||||||
Con_Printf ("Invalid standards version: %s", p);
|
Con_Printf ("Invalid QSG Protocol number: %s\n", p);
|
||||||
}
|
}
|
||||||
if ((p = Info_ValueForKey (cl.serverinfo, "skybox")) && *p) {
|
if ((p = Info_ValueForKey (cl.serverinfo, "skybox")) && *p) {
|
||||||
if (stricmp (p, "none") == 0) {
|
if (stricmp (p, "none") == 0) {
|
||||||
|
@ -1125,8 +1125,6 @@ CL_Init (void)
|
||||||
// snprintf (st, sizeof(st), "%s-%04d", QW_VERSION, build_number());
|
// snprintf (st, sizeof(st), "%s-%04d", QW_VERSION, build_number());
|
||||||
snprintf (st, sizeof (st), "%s", QW_VERSION);
|
snprintf (st, sizeof (st), "%s", QW_VERSION);
|
||||||
Info_SetValueForStarKey (cls.userinfo, "*ver", st, MAX_INFO_STRING);
|
Info_SetValueForStarKey (cls.userinfo, "*ver", st, MAX_INFO_STRING);
|
||||||
Info_SetValueForStarKey (cls.userinfo, "stdver", QSG_VERSION,
|
|
||||||
MAX_INFO_STRING);
|
|
||||||
#ifdef PACKET_LOGGING
|
#ifdef PACKET_LOGGING
|
||||||
Net_Log_Init();
|
Net_Log_Init();
|
||||||
#endif
|
#endif
|
||||||
|
|
196
source/sv_main.c
196
source/sv_main.c
|
@ -70,83 +70,74 @@ client_t *host_client; // current client
|
||||||
// FLOOD_PING, FLOOD_LOG, FLOOD_CONNECT, FLOOD_STATUS, FLOOD_RCON, FLOOD_BAN
|
// FLOOD_PING, FLOOD_LOG, FLOOD_CONNECT, FLOOD_STATUS, FLOOD_RCON, FLOOD_BAN
|
||||||
// fixme: these default values need to be tweaked after more testing
|
// fixme: these default values need to be tweaked after more testing
|
||||||
|
|
||||||
double netdosexpire[DOSFLOODCMDS] = { 1, 1, 2, 0.9, 1, 5 };
|
double netdosexpire[DOSFLOODCMDS] = { 1, 1, 2, 0.9, 1, 5 };
|
||||||
double netdosvalues[DOSFLOODCMDS] = { 12, 1, 3, 1, 1, 1 };
|
double netdosvalues[DOSFLOODCMDS] = { 12, 1, 3, 1, 1, 1 };
|
||||||
|
|
||||||
cvar_t *sv_netdosprotect; // tone down DoS from quake servers
|
cvar_t *sv_netdosprotect; // tone down DoS from quake servers
|
||||||
|
|
||||||
cvar_t *sv_allow_status;
|
cvar_t *sv_allow_status;
|
||||||
cvar_t *sv_allow_log;
|
cvar_t *sv_allow_log;
|
||||||
cvar_t *sv_allow_ping;
|
cvar_t *sv_allow_ping;
|
||||||
|
|
||||||
cvar_t *fs_globalcfg;
|
cvar_t *fs_globalcfg;
|
||||||
cvar_t *fs_usercfg;
|
cvar_t *fs_usercfg;
|
||||||
|
|
||||||
cvar_t *sv_mintic; // bound the size of the
|
cvar_t *sv_mintic; // bound the size of the
|
||||||
cvar_t *sv_maxtic; // physics time tic
|
cvar_t *sv_maxtic; // physics time tic
|
||||||
|
|
||||||
cvar_t *developer; // show extra messages
|
cvar_t *developer; // show extra messages
|
||||||
|
|
||||||
cvar_t *timeout; // seconds without any message
|
cvar_t *timeout; // seconds without any message
|
||||||
cvar_t *zombietime; // seconds to sink messages after
|
cvar_t *zombietime; // seconds to sink messages after disconnect
|
||||||
|
|
||||||
// disconnect
|
cvar_t *rcon_password; // password for remote server commands
|
||||||
|
|
||||||
cvar_t *rcon_password; // password for remote server
|
cvar_t *password; // password for entering the game
|
||||||
|
cvar_t *spectator_password; // password for entering as a spectator
|
||||||
|
|
||||||
// commands
|
cvar_t *allow_download;
|
||||||
|
cvar_t *allow_download_skins;
|
||||||
|
cvar_t *allow_download_models;
|
||||||
|
cvar_t *allow_download_sounds;
|
||||||
|
cvar_t *allow_download_maps;
|
||||||
|
|
||||||
cvar_t *password; // password for entering the game
|
cvar_t *sv_highchars;
|
||||||
cvar_t *spectator_password; // password for entering as a
|
|
||||||
|
|
||||||
// spectator
|
cvar_t *sv_phs;
|
||||||
|
|
||||||
cvar_t *allow_download;
|
cvar_t *pausable;
|
||||||
cvar_t *allow_download_skins;
|
|
||||||
cvar_t *allow_download_models;
|
|
||||||
cvar_t *allow_download_sounds;
|
|
||||||
cvar_t *allow_download_maps;
|
|
||||||
|
|
||||||
cvar_t *sv_highchars;
|
extern cvar_t *sv_timekick;
|
||||||
|
extern cvar_t *sv_timekick_fuzz;
|
||||||
|
extern cvar_t *sv_timekick_interval;
|
||||||
|
|
||||||
cvar_t *sv_phs;
|
cvar_t *sv_minqfversion; // Minimum QF version allowed to connect
|
||||||
|
cvar_t *sv_maxrate; // Maximum allowable rate (silent cap)
|
||||||
|
|
||||||
cvar_t *pausable;
|
cvar_t *sv_extensions; // Use the extended protocols
|
||||||
|
cvar_t *sv_timestamps;
|
||||||
extern cvar_t *sv_timekick;
|
cvar_t *sv_timefmt;
|
||||||
extern cvar_t *sv_timekick_fuzz;
|
|
||||||
extern cvar_t *sv_timekick_interval;
|
|
||||||
|
|
||||||
cvar_t *sv_minqfversion; // Minimum QF version allowed to
|
|
||||||
|
|
||||||
// connect
|
|
||||||
cvar_t *sv_maxrate; // Maximum allowable rate (silently
|
|
||||||
|
|
||||||
// capped)
|
|
||||||
|
|
||||||
cvar_t *sv_timestamps;
|
|
||||||
cvar_t *sv_timefmt;
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// game rules mirrored in svs.info
|
// game rules mirrored in svs.info
|
||||||
//
|
//
|
||||||
cvar_t *fraglimit;
|
cvar_t *fraglimit;
|
||||||
cvar_t *timelimit;
|
cvar_t *timelimit;
|
||||||
cvar_t *teamplay;
|
cvar_t *teamplay;
|
||||||
cvar_t *samelevel;
|
cvar_t *samelevel;
|
||||||
cvar_t *maxclients;
|
cvar_t *maxclients;
|
||||||
cvar_t *maxspectators;
|
cvar_t *maxspectators;
|
||||||
cvar_t *deathmatch; // 0, 1, or 2
|
cvar_t *deathmatch; // 0, 1, or 2
|
||||||
cvar_t *spawn;
|
cvar_t *spawn;
|
||||||
cvar_t *watervis;
|
cvar_t *watervis;
|
||||||
|
|
||||||
cvar_t *hostname;
|
cvar_t *hostname;
|
||||||
|
|
||||||
QFile *sv_logfile;
|
QFile *sv_logfile;
|
||||||
QFile *sv_fraglogfile;
|
QFile *sv_fraglogfile;
|
||||||
|
|
||||||
void SV_AcceptClient (netadr_t adr, int userid, char *userinfo);
|
void SV_AcceptClient (netadr_t adr, int userid, char *userinfo);
|
||||||
void Master_Shutdown (void);
|
void Master_Shutdown (void);
|
||||||
|
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
|
@ -229,8 +220,7 @@ SV_FinalMessage (char *message)
|
||||||
|
|
||||||
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++)
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++)
|
||||||
if (cl->state >= cs_spawned)
|
if (cl->state >= cs_spawned)
|
||||||
Netchan_Transmit (&cl->netchan, net_message.cursize,
|
Netchan_Transmit (&cl->netchan, net_message.cursize, net_message.data);
|
||||||
net_message.data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -546,11 +536,8 @@ SVC_Log (void)
|
||||||
else
|
else
|
||||||
seq = -1;
|
seq = -1;
|
||||||
|
|
||||||
if (seq == svs.logsequence - 1 || !sv_fraglogfile) { // they allready
|
if (seq == svs.logsequence - 1 || !sv_fraglogfile) {
|
||||||
// have this
|
// they already have this data, or we aren't logging frags
|
||||||
// data, or we
|
|
||||||
// aren't logging
|
|
||||||
// frags
|
|
||||||
data[0] = A2A_NACK;
|
data[0] = A2A_NACK;
|
||||||
NET_SendPacket (1, data, net_from);
|
NET_SendPacket (1, data, net_from);
|
||||||
return;
|
return;
|
||||||
|
@ -604,6 +591,7 @@ SVC_GetChallenge (void)
|
||||||
int i;
|
int i;
|
||||||
int oldest;
|
int oldest;
|
||||||
int oldestTime;
|
int oldestTime;
|
||||||
|
char *extended = "";
|
||||||
|
|
||||||
oldest = 0;
|
oldest = 0;
|
||||||
oldestTime = 0x7fffffff;
|
oldestTime = 0x7fffffff;
|
||||||
|
@ -625,9 +613,14 @@ SVC_GetChallenge (void)
|
||||||
svs.challenges[oldest].time = realtime;
|
svs.challenges[oldest].time = realtime;
|
||||||
i = oldest;
|
i = oldest;
|
||||||
}
|
}
|
||||||
// send it back
|
|
||||||
Netchan_OutOfBandPrint (net_from, "%c%i QF", S2C_CHALLENGE,
|
if (sv_extensions->int_val) {
|
||||||
svs.challenges[i].challenge);
|
extended = " QF";
|
||||||
|
}
|
||||||
|
|
||||||
|
// send it to the client
|
||||||
|
Netchan_OutOfBandPrint (net_from, "%c%i%s", S2C_CHALLENGE,
|
||||||
|
svs.challenges[i].challenge, extended);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1475,15 +1468,16 @@ void
|
||||||
SV_InitLocal (void)
|
SV_InitLocal (void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
extern cvar_t *sv_maxvelocity;
|
|
||||||
extern cvar_t *sv_gravity;
|
|
||||||
extern cvar_t *sv_aim;
|
|
||||||
extern cvar_t *sv_stopspeed;
|
|
||||||
extern cvar_t *sv_spectatormaxspeed;
|
|
||||||
extern cvar_t *sv_accelerate;
|
extern cvar_t *sv_accelerate;
|
||||||
|
extern cvar_t *sv_aim;
|
||||||
extern cvar_t *sv_airaccelerate;
|
extern cvar_t *sv_airaccelerate;
|
||||||
extern cvar_t *sv_wateraccelerate;
|
extern cvar_t *sv_extensions;
|
||||||
extern cvar_t *sv_friction;
|
extern cvar_t *sv_friction;
|
||||||
|
extern cvar_t *sv_gravity;
|
||||||
|
extern cvar_t *sv_maxvelocity;
|
||||||
|
extern cvar_t *sv_spectatormaxspeed;
|
||||||
|
extern cvar_t *sv_stopspeed;
|
||||||
|
extern cvar_t *sv_wateraccelerate;
|
||||||
extern cvar_t *sv_waterfriction;
|
extern cvar_t *sv_waterfriction;
|
||||||
|
|
||||||
SV_UserInit ();
|
SV_UserInit ();
|
||||||
|
@ -1530,46 +1524,34 @@ SV_InitLocal (void)
|
||||||
zombietime = Cvar_Get ("zombietime", "2", CVAR_NONE,
|
zombietime = Cvar_Get ("zombietime", "2", CVAR_NONE,
|
||||||
"The number of seconds that the server will keep the character of a player on the map who seems to have disconnected");
|
"The number of seconds that the server will keep the character of a player on the map who seems to have disconnected");
|
||||||
|
|
||||||
sv_maxvelocity = Cvar_Get ("sv_maxvelocity", "2000", CVAR_NONE, "Sets the maximum velocity an object can travel");
|
|
||||||
sv_gravity = Cvar_Get ("sv_gravity", "800", CVAR_NONE, "Sets the global value for the amount of gravity");
|
|
||||||
sv_stopspeed = Cvar_Get ("sv_stopspeed", "100", CVAR_NONE,
|
|
||||||
"Sets the value that determines how fast the player should come to a complete stop");
|
|
||||||
sv_maxspeed = Cvar_Get ("sv_maxspeed", "320", CVAR_NONE, "Sets the maximum speed a player can move");
|
|
||||||
sv_spectatormaxspeed =
|
|
||||||
Cvar_Get ("sv_spectatormaxspeed", "500", CVAR_NONE, "Sets the maximum speed a spectator can move");
|
|
||||||
sv_accelerate = Cvar_Get ("sv_accelerate", "10", CVAR_NONE, "Sets the acceleration value for the players");
|
|
||||||
sv_airaccelerate = Cvar_Get ("sv_airaccelerate", "0.7", CVAR_NONE, "Sets how quickly the players accelerate in air");
|
|
||||||
sv_wateraccelerate =
|
|
||||||
Cvar_Get ("sv_wateraccelerate", "10", CVAR_NONE, "Sets the water acceleration value");
|
|
||||||
sv_friction = Cvar_Get ("sv_friction", "4", CVAR_NONE, "Sets the friction value for the players");
|
|
||||||
sv_waterfriction = Cvar_Get ("sv_waterfriction", "4", CVAR_NONE, "Sets the water friction value");
|
|
||||||
|
|
||||||
sv_aim = Cvar_Get ("sv_aim", "2", CVAR_NONE, "Sets the value for auto-aiming leniency");
|
sv_aim = Cvar_Get ("sv_aim", "2", CVAR_NONE, "Sets the value for auto-aiming leniency");
|
||||||
|
|
||||||
sv_timekick =
|
sv_accelerate = Cvar_Get ("sv_accelerate", "10", CVAR_NONE, "Sets the acceleration value for the players");
|
||||||
Cvar_Get ("sv_timekick", "3", CVAR_SERVERINFO, "Time cheat protection");
|
sv_airaccelerate = Cvar_Get ("sv_airaccelerate", "0.7", CVAR_NONE, "Sets how quickly the players accelerate in air");
|
||||||
sv_timekick_fuzz =
|
sv_wateraccelerate = Cvar_Get ("sv_wateraccelerate", "10", CVAR_NONE, "Sets the water acceleration value");
|
||||||
Cvar_Get ("sv_timekick_fuzz", "15", CVAR_NONE,
|
|
||||||
"Time cheat \"fuzz factor\"");
|
|
||||||
sv_timekick_interval =
|
|
||||||
Cvar_Get ("sv_timekick_interval", "30", CVAR_NONE,
|
|
||||||
"Time cheat check interval");
|
|
||||||
|
|
||||||
sv_minqfversion =
|
sv_allow_log = Cvar_Get ("sv_allow_log", "1", CVAR_NONE, "Allow remote logging");
|
||||||
Cvar_Get ("sv_minqfversion", "0", CVAR_SERVERINFO,
|
sv_allow_ping = Cvar_Get ("sv_allow_pings", "1", CVAR_NONE, "Allow remote pings (qstat etc)");
|
||||||
"Minimum QF version on client");
|
sv_allow_status = Cvar_Get ("sv_allow_status", "1", CVAR_NONE, "Allow remote status queries (qstat etc)");
|
||||||
|
|
||||||
sv_maxrate =
|
sv_extensions = Cvar_Get ("sv_extensions", "1", CVAR_NONE, "Use protocol extensions for QuakeForge clients");
|
||||||
Cvar_Get ("sv_maxrate", "0", CVAR_SERVERINFO, "Maximum allowable rate");
|
sv_friction = Cvar_Get ("sv_friction", "4", CVAR_NONE, "Sets the friction value for the players");
|
||||||
|
sv_gravity = Cvar_Get ("sv_gravity", "800", CVAR_NONE, "Sets the global value for the amount of gravity");
|
||||||
|
|
||||||
|
sv_maxrate = Cvar_Get ("sv_maxrate", "0", CVAR_SERVERINFO, "Maximum allowable rate");
|
||||||
|
sv_maxspeed = Cvar_Get ("sv_maxspeed", "320", CVAR_NONE, "Sets the maximum speed a player can move");
|
||||||
|
sv_maxvelocity = Cvar_Get ("sv_maxvelocity", "2000", CVAR_NONE, "Sets the maximum velocity an object can travel");
|
||||||
|
|
||||||
|
sv_minqfversion = Cvar_Get ("sv_minqfversion", "0", CVAR_SERVERINFO, "Minimum QF version on client");
|
||||||
|
sv_spectatormaxspeed = Cvar_Get ("sv_spectatormaxspeed", "500", CVAR_NONE, "Sets the maximum speed a spectator can move");
|
||||||
|
sv_stopspeed = Cvar_Get ("sv_stopspeed", "100", CVAR_NONE, "Sets the value that determines how fast the player should come to a complete stop");
|
||||||
|
|
||||||
|
sv_timekick = Cvar_Get ("sv_timekick", "3", CVAR_SERVERINFO, "Time cheat protection");
|
||||||
|
sv_timekick_fuzz = Cvar_Get ("sv_timekick_fuzz", "15", CVAR_NONE, "Time cheat \"fuzz factor\"");
|
||||||
|
sv_timekick_interval = Cvar_Get ("sv_timekick_interval", "30", CVAR_NONE, "Time cheat check interval");
|
||||||
|
|
||||||
|
sv_waterfriction = Cvar_Get ("sv_waterfriction", "4", CVAR_NONE, "Sets the water friction value");
|
||||||
|
|
||||||
sv_allow_log =
|
|
||||||
Cvar_Get ("sv_allow_log", "1", CVAR_NONE, "Allow remote logging");
|
|
||||||
sv_allow_status =
|
|
||||||
Cvar_Get ("sv_allow_status", "1", CVAR_NONE,
|
|
||||||
"Allow remote status queries (qstat etc)");
|
|
||||||
sv_allow_ping =
|
|
||||||
Cvar_Get ("sv_allow_pings", "1", CVAR_NONE,
|
|
||||||
"Allow remote pings (qstat etc)");
|
|
||||||
sv_netdosprotect =
|
sv_netdosprotect =
|
||||||
Cvar_Get ("sv_netdosprotect", "0", CVAR_NONE,
|
Cvar_Get ("sv_netdosprotect", "0", CVAR_NONE,
|
||||||
"DoS flood attack protection");
|
"DoS flood attack protection");
|
||||||
|
@ -1821,7 +1803,7 @@ SV_ExtractFromUserinfo (client_t *cl)
|
||||||
cl->messagelevel = atoi (val);
|
cl->messagelevel = atoi (val);
|
||||||
}
|
}
|
||||||
|
|
||||||
cl->stdver = atoi (Info_ValueForKey (cl->userinfo, "stdver"));
|
cl->stdver = atof (Info_ValueForKey (cl->userinfo, "*qsg_version"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue