]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
changed net_masterextra1 and 2 back to IP addresses (but kept their DNS names as...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 27 Oct 2004 18:29:51 +0000 (18:29 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 27 Oct 2004 18:29:51 +0000 (18:29 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4720 d7cf8633-e32d-0410-b094-e92efae38249

netconn.c

index 2c7f0cae03e872acb0a90df28fb49e6c6fa16599..9ab6cd5ea1541345d67938cd5b1ac486577fd6f6 100755 (executable)
--- a/netconn.c
+++ b/netconn.c
@@ -28,14 +28,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 cvar_t sv_public = {0, "sv_public", "0"};
 static cvar_t sv_heartbeatperiod = {CVAR_SAVE, "sv_heartbeatperiod", "180"};
 
+// FIXME: resolve DNS on masters whenever their value changes and cache it (to avoid major delays in active servers when they heartbeat)
 static cvar_t sv_masters [] =
 {
        {CVAR_SAVE, "sv_master1", ""},
        {CVAR_SAVE, "sv_master2", ""},
        {CVAR_SAVE, "sv_master3", ""},
        {CVAR_SAVE, "sv_master4", ""},
-       {0, "sv_masterextra1", "ghdigital.com"},
-       {0, "sv_masterextra2", "dpmaster.deathmask.net"},
+       {0, "sv_masterextra1", "69.59.212.88"}, // ghdigital.com
+       {0, "sv_masterextra2", "66.169.205.13"}, // dpmaster.deathmask.net
        {0, NULL, NULL}
 };