2017-05-21 23:07:13 +00:00
|
|
|
// UUID(name_in_code, name)
|
|
|
|
//
|
|
|
|
// When adding your own extended net messages, choose the name (third
|
|
|
|
// parameter) as `<name>@<domain>` where `<name>` is a name you can choose
|
|
|
|
// freely and `<domain>` is a domain you own. If you don't own a domain, try
|
|
|
|
// choosing a string that is not a domain and uniquely identifies you, e.g. use
|
|
|
|
// the name of the client/server you develop.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// 1) `i-unfreeze-you@ddnet.tw`
|
|
|
|
// 2) `creeper@minetee`
|
|
|
|
//
|
|
|
|
// The first example applies if you own the `ddnet.tw` domain, that is, if you
|
|
|
|
// are adding this message on behalf of the DDNet team.
|
|
|
|
//
|
|
|
|
// The second example shows how you could add a message if you don't own a
|
|
|
|
// domain, but need a message for your minetee client/server.
|
|
|
|
|
2018-07-06 14:11:38 +00:00
|
|
|
// This file can be included several times.
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
UUID(NETMSG_WHATIS, "what-is@ddnet.tw")
|
|
|
|
UUID(NETMSG_ITIS, "it-is@ddnet.tw")
|
|
|
|
UUID(NETMSG_IDONTKNOW, "i-dont-know@ddnet.tw")
|
2017-07-24 19:43:55 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
UUID(NETMSG_RCONTYPE, "rcon-type@ddnet.tw")
|
|
|
|
UUID(NETMSG_MAP_DETAILS, "map-details@ddnet.tw")
|
2019-06-03 19:52:14 +00:00
|
|
|
UUID(NETMSG_CAPABILITIES, "capabilities@ddnet.tw")
|
2020-09-26 19:41:58 +00:00
|
|
|
UUID(NETMSG_CLIENTVER, "clientver@ddnet.tw")
|
2021-04-23 21:29:01 +00:00
|
|
|
UUID(NETMSG_PINGEX, "ping@ddnet.tw")
|
|
|
|
UUID(NETMSG_PONGEX, "pong@ddnet.tw")
|
2022-01-31 02:11:47 +00:00
|
|
|
UUID(NETMSG_CHECKSUM_REQUEST, "checksum-request@ddnet.tw")
|
|
|
|
UUID(NETMSG_CHECKSUM_RESPONSE, "checksum-response@ddnet.tw")
|
|
|
|
UUID(NETMSG_CHECKSUM_ERROR, "checksum-error@ddnet.tw")
|