]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - netconn.h
removed CL_InitTEnts function, moved its contents (cl_sfx precaches) to CL_ParseServe...
[xonotic/darkplaces.git] / netconn.h
index 62dd2a0f1540b7fee664bdc65aa36fcb3ff79635..631e6f2978337c4c2a4d58d1e67d827398acee5d 100755 (executable)
--- a/netconn.h
+++ b/netconn.h
@@ -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;