Index: code/server/server.h =================================================================== --- code/server/server.h (revision 873) +++ code/server/server.h (working copy) @@ -226,6 +226,8 @@ extern cvar_t *sv_rconPassword; extern cvar_t *sv_privatePassword; extern cvar_t *sv_allowDownload; +extern cvar_t *sv_wwwDownload; +extern cvar_t *sv_wwwBaseURL; extern cvar_t *sv_maxclients; extern cvar_t *sv_privateClients; Index: code/server/sv_init.c =================================================================== --- code/server/sv_init.c (revision 873) +++ code/server/sv_init.c (working copy) @@ -606,6 +606,10 @@ Cvar_Get ("nextmap", "", CVAR_TEMP ); sv_allowDownload = Cvar_Get ("sv_allowDownload", "0", CVAR_SERVERINFO); + sv_wwwDownload = Cvar_Get ("sv_wwwDownload", "1", + CVAR_SYSTEMINFO|CVAR_ARCHIVE); + sv_wwwBaseURL = Cvar_Get ("sv_wwwBaseURL", "", + CVAR_SYSTEMINFO|CVAR_ARCHIVE); sv_master[0] = Cvar_Get ("sv_master1", MASTER_SERVER_NAME, 0 ); sv_master[1] = Cvar_Get ("sv_master2", "", CVAR_ARCHIVE ); sv_master[2] = Cvar_Get ("sv_master3", "", CVAR_ARCHIVE ); Index: code/server/sv_main.c =================================================================== --- code/server/sv_main.c (revision 873) +++ code/server/sv_main.c (working copy) @@ -32,6 +32,8 @@ cvar_t *sv_rconPassword; // password for remote server commands cvar_t *sv_privatePassword; // password for the privateClient slots cvar_t *sv_allowDownload; +cvar_t *sv_wwwBaseURL; +cvar_t *sv_wwwDownload; cvar_t *sv_maxclients; cvar_t *sv_privateClients; // number of clients reserved for password