diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-09-07 21:13:24 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-09-07 21:13:24 +0000 |
| commit | 3b086d616a9090f714c90c7985f10c5dc4bd5733 (patch) | |
| tree | 8137021d446260adfc5eacd753f9e42ab5281e7d /src/engine/e_protocol.h | |
| parent | 6a4e17ea8520e9eb3a88ce15a9e337679d631775 (diff) | |
| download | zcatch-3b086d616a9090f714c90c7985f10c5dc4bd5733.tar.gz zcatch-3b086d616a9090f714c90c7985f10c5dc4bd5733.zip | |
fixed threaded jobs
Diffstat (limited to 'src/engine/e_protocol.h')
| -rw-r--r-- | src/engine/e_protocol.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/engine/e_protocol.h b/src/engine/e_protocol.h index 93441fe7..033db43c 100644 --- a/src/engine/e_protocol.h +++ b/src/engine/e_protocol.h @@ -41,6 +41,9 @@ enum NETMSG_SNAPSMALL, /* */ NETMSG_RCON_AUTH_STATUS,/* result of the authentication */ NETMSG_RCON_LINE, /* line that should be printed to the remote console */ + + NETMSG_AUTH_CHALLANGE, /* */ + NETMSG_AUTH_RESULT, /* */ /* sent by client */ NETMSG_READY, /* */ @@ -49,6 +52,9 @@ enum NETMSG_RCON_CMD, /* */ NETMSG_RCON_AUTH, /* */ NETMSG_REQUEST_MAP_DATA,/* */ + + NETMSG_AUTH_START, /* */ + NETMSG_AUTH_RESPONSE, /* */ /* sent by both */ NETMSG_PING, |