This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Enumerations | |
enum | IndexServerMsg { TS_NO_MSG, TS_MSG_VERSION, TS_MSG_HOSTING, TS_MSG_GET_LIST, TS_MSG_WIS_VERSION, TS_MSG_JOIN_LEAVE, TS_LAST_MSG } |
Variables | |
const std::string | server_list_url = "http://www.wormux.org/server_list" |
enum IndexServerMsg |
TS_NO_MSG | |
TS_MSG_VERSION | |
TS_MSG_HOSTING | |
TS_MSG_GET_LIST | |
TS_MSG_WIS_VERSION | |
TS_MSG_JOIN_LEAVE | |
TS_LAST_MSG |
Definition at line 26 of file index_svr_msg.h.
00027 { 00028 TS_NO_MSG, // Don't send this 00029 00030 //******** Messages shared by wormux clients, womux servers, and index servers ******** 00031 TS_MSG_VERSION, // Send this to identify the server 00032 TS_MSG_HOSTING, // Send this if we are hosting a game 00033 TS_MSG_GET_LIST, // Send this to obtain the list of the current hosting games 00034 00035 //******** index servers to index servers messages *********************************** 00036 TS_MSG_WIS_VERSION, // Send the server version 00037 TS_MSG_JOIN_LEAVE, // Send this when a wormux server joined or left the index server 00038 00039 TS_LAST_MSG // Don't send this 00040 };
const std::string server_list_url = "http://www.wormux.org/server_list" |
Definition at line 42 of file index_svr_msg.h.