]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - netconn.h
fix shader name in "permutation%s failed for shader %s, some features may not work...
[xonotic/darkplaces.git] / netconn.h
index 603d987b7395263a059dd57f00e6e37d4d3a90d9..d875e7a81d5e3f40f18d57f314b686d1b63b7384 100755 (executable)
--- a/netconn.h
+++ b/netconn.h
@@ -246,8 +246,12 @@ typedef struct serverlist_info_s
        char name[128];
        // max client number
        int maxplayers;
-       // number of currently connected players
+       // number of currently connected players (including bots)
        int numplayers;
+       // number of currently connected players that are bots
+       int numbots;
+       // number of currently connected players that are not bots
+       int numhumans;
        // protocol version
        int protocol;
        // game data version
@@ -267,6 +271,8 @@ typedef enum
        SLIF_MAXPLAYERS,
        SLIF_NUMPLAYERS,
        SLIF_PROTOCOL,
+       SLIF_NUMBOTS,
+       SLIF_NUMHUMANS,
        SLIF_COUNT
 } serverlist_infofield_t;
 
@@ -334,6 +340,8 @@ extern int serverreplycount;
 
 extern sizebuf_t net_message;
 
+extern cvar_t sv_public;
+
 extern cvar_t cl_netlocalping;
 
 extern cvar_t cl_netport;
@@ -342,7 +350,7 @@ extern cvar_t net_address;
 //extern cvar_t net_netaddress_ipv6;
 
 qboolean NetConn_CanSend(netconn_t *conn);
-int NetConn_SendUnreliableMessage(netconn_t *conn, sizebuf_t *data, protocolversion_t protocol, int rate);
+int NetConn_SendUnreliableMessage(netconn_t *conn, sizebuf_t *data, protocolversion_t protocol, int rate, qboolean quakesignon_suppressreliables);
 void NetConn_CloseClientPorts(void);
 void NetConn_OpenClientPorts(void);
 void NetConn_CloseServerPorts(void);