]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - netconn.h
draw [] brackets on the top 4 frags display before the frags count rather than after...
[xonotic/darkplaces.git] / netconn.h
index 62dd2a0f1540b7fee664bdc65aa36fcb3ff79635..fd39833e8ee504746da668d58db4ac30dd62d79d 100755 (executable)
--- a/netconn.h
+++ b/netconn.h
@@ -151,7 +151,7 @@ extern char playername[];
 extern int playercolor;
 
 #define SERVERLIST_TOTALSIZE           2048
-#define SERVERLIST_VIEWLISTSIZE                128
+#define SERVERLIST_VIEWLISTSIZE                SERVERLIST_TOTALSIZE
 #define SERVERLIST_ANDMASKCOUNT                5
 #define SERVERLIST_ORMASKCOUNT         5
 
@@ -210,15 +210,17 @@ typedef enum
 typedef enum
 {
        SQS_NONE = 0,
-       SQS_PENDING,
        SQS_QUERYING,
-       SQS_QUERIED
+       SQS_QUERIED,
+       SQS_TIMEDOUT
 } serverlist_query_state;
 
 typedef struct
 {
        // used to determine whether this entry should be included into the final view
        serverlist_query_state query;
+       // used to count the number of times the host has tried to query this server already
+       unsigned querycounter;
        // used to calculate ping when update comes in
        double querytime;