]> 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 72c257d845ae6c92a5b96b90921def5306104e6d..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
 
@@ -207,10 +207,20 @@ typedef enum
        SLIF_COUNT
 } serverlist_infofield_t;
 
+typedef enum
+{
+       SQS_NONE = 0,
+       SQS_QUERYING,
+       SQS_QUERIED,
+       SQS_TIMEDOUT
+} serverlist_query_state;
+
 typedef struct
 {
        // used to determine whether this entry should be included into the final view
-       qboolean finished;
+       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;
 
@@ -296,6 +306,7 @@ void NetConn_ClientFrame(void);
 void NetConn_ServerFrame(void);
 void NetConn_QueryMasters(void);
 void NetConn_Heartbeat(int priority);
+void NetConn_QueryQueueFrame(void);
 int NetConn_SendToAll(sizebuf_t *data, double blocktime);
 void Net_Stats_f(void);
 void Net_Slist_f(void);