Add HTTP support and update checking
Some checks failed
CodeQL / Analyze (push) Waiting to run
Build branch / build-all (push) Failing after 16s

This commit is contained in:
smallmodel 2025-02-23 21:30:56 +01:00
parent 2c72908f76
commit 01381ed084
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512
104 changed files with 111355 additions and 25 deletions

View file

@ -1060,6 +1060,7 @@ extern cvar_t* con_autochat;
extern cvar_t* com_target_version;
extern cvar_t* com_target_game;
extern cvar_t* com_target_demo;
extern cvar_t* com_updateCheckInterval;
extern int protocol_version_demo;
extern int protocol_version_full;
@ -1463,6 +1464,8 @@ dialogResult_t Sys_Dialog( dialogType_t type, const char *message, const char *t
void Sys_RemovePIDFile( const char *gamedir );
void Sys_InitPIDFile( const char *gamedir );
void Sys_ProcessBackgroundTasks();
/* This is based on the Adaptive Huffman algorithm described in Sayood's Data
* Compression book. The ranks are not actually stored, but implicitly defined
* by the location of a node within a doubly-linked list */