diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-08-01 20:31:11 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-08-01 20:31:11 +0000 |
commit | c2cde930ed189d70846bf86acfddf6fdd0c998f9 (patch) | |
tree | 01e97dbcafa4462c5bf16c7a833743c16260cc86 /src | |
parent | 0c9ddb1925420231b30dcb6a29b50e6586c36755 (diff) | |
download | mana-c2cde930ed189d70846bf86acfddf6fdd0c998f9.tar.gz mana-c2cde930ed189d70846bf86acfddf6fdd0c998f9.tar.bz2 mana-c2cde930ed189d70846bf86acfddf6fdd0c998f9.tar.xz mana-c2cde930ed189d70846bf86acfddf6fdd0c998f9.zip |
Moved some basic checks above the checks on the libraries we depend on, in
order to get rid of the confusing rpl_realloc error.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h index 0db4dfb0..e1d403a2 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -116,11 +116,11 @@ */ enum { // Login/Register - PAMSG_REGISTER = 0x0000, // S version, S username, S password, S email + PAMSG_REGISTER = 0x0000, // L version, S username, S password, S email APMSG_REGISTER_RESPONSE = 0x0002, // B error PAMSG_UNREGISTER = 0x0003, // - APMSG_UNREGISTER_RESPONSE = 0x0004, // B error - PAMSG_LOGIN = 0x0010, // S version, S username, S password + PAMSG_LOGIN = 0x0010, // L version, S username, S password APMSG_LOGIN_RESPONSE = 0x0012, // B error PAMSG_LOGOUT = 0x0013, // - APMSG_LOGOUT_RESPONSE = 0x0014, // B error |