From: divverent Date: Thu, 19 Jan 2012 22:50:29 +0000 (+0000) Subject: note that in some cases, crypto_aeslevel changes need crypto_reload to apply (namely... X-Git-Tag: xonotic-v0.8.0~96^2~363 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9a55aaeb89cf823297d40821f9558daed16c87f1;p=xonotic%2Fdarkplaces.git note that in some cases, crypto_aeslevel changes need crypto_reload to apply (namely, for the server info string) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11650 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/crypto.c b/crypto.c index dd7fc885..85c1caac 100644 --- a/crypto.c +++ b/crypto.c @@ -13,7 +13,7 @@ cvar_t crypto_servercpumaxtime = {CVAR_SAVE, "crypto_servercpumaxtime", "0.01", cvar_t crypto_servercpudebug = {CVAR_SAVE, "crypto_servercpudebug", "0", "print statistics about time usage by crypto"}; static double crypto_servercpu_accumulator = 0; static double crypto_servercpu_lastrealtime = 0; -cvar_t crypto_aeslevel = {CVAR_SAVE, "crypto_aeslevel", "1", "whether to support AES encryption in authenticated connections (0 = no, 1 = supported, 2 = requested, 3 = required)"}; +cvar_t crypto_aeslevel = {CVAR_SAVE, "crypto_aeslevel", "1", "whether to support AES encryption in authenticated connections (0 = no, 1 = supported, 2 = requested, 3 = required); changing this may require crypto_reload to fully apply"}; int crypto_keyfp_recommended_length; static const char *crypto_idstring = NULL; static char crypto_idstring_buf[512];