1 | /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ |
2 | /* If you are missing that file, acquire a complete release at teeworlds.com. */ |
3 | #ifndef ENGINE_SHARED_MASTERSERVER_H |
4 | #define ENGINE_SHARED_MASTERSERVER_H |
5 | |
6 | #define SERVERBROWSE_SIZE 8 |
7 | extern const unsigned char SERVERBROWSE_GETINFO[SERVERBROWSE_SIZE]; |
8 | extern const unsigned char SERVERBROWSE_INFO[SERVERBROWSE_SIZE]; |
9 | |
10 | extern const unsigned char SERVERBROWSE_GETINFO_64_LEGACY[SERVERBROWSE_SIZE]; |
11 | extern const unsigned char SERVERBROWSE_INFO_64_LEGACY[SERVERBROWSE_SIZE]; |
12 | |
13 | extern const unsigned char SERVERBROWSE_INFO_EXTENDED[SERVERBROWSE_SIZE]; |
14 | extern const unsigned char SERVERBROWSE_INFO_EXTENDED_MORE[SERVERBROWSE_SIZE]; |
15 | |
16 | extern const unsigned char SERVERBROWSE_CHALLENGE[SERVERBROWSE_SIZE]; |
17 | |
18 | enum |
19 | { |
20 | SERVERINFO_VANILLA = 0, |
21 | SERVERINFO_64_LEGACY, |
22 | SERVERINFO_EXTENDED, |
23 | SERVERINFO_EXTENDED_MORE, |
24 | SERVERINFO_INGAME, |
25 | }; |
26 | #endif // ENGINE_SHARED_MASTERSERVER_H |
27 | |