diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2008-04-25 23:52:10 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2008-04-25 23:52:10 +0000 |
commit | ba366046e31523664b2deab4d48d9962aa8bac7e (patch) | |
tree | 30aeaeb0ab629a5811c350f159d05c47556576c5 /src/net/protocol.h | |
parent | 34f13f39c61fbfc0a41e5b5d49f9d9619e3f75a3 (diff) | |
download | mana-client-ba366046e31523664b2deab4d48d9962aa8bac7e.tar.gz mana-client-ba366046e31523664b2deab4d48d9962aa8bac7e.tar.bz2 mana-client-ba366046e31523664b2deab4d48d9962aa8bac7e.tar.xz mana-client-ba366046e31523664b2deab4d48d9962aa8bac7e.zip |
Generic return values were incomplete client-side.
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r-- | src/net/protocol.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h index 10c89689..201bf717 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -192,7 +192,10 @@ enum { ERRMSG_NO_CHARACTER_SELECTED, // the user needs a character ERRMSG_INSUFFICIENT_RIGHTS, // the user is not privileged ERRMSG_INVALID_ARGUMENT, // part of the received message was invalid - ERRMSG_EMAIL_ALREADY_EXISTS // The Email Address already exists + ERRMSG_EMAIL_ALREADY_EXISTS, // The Email Address already exists + ERRMSG_ALREADY_TAKEN, // name used was already taken + ERRMSG_SERVER_FULL, // the server is overloaded + ERRMSG_TIME_OUT // data failed to arrive in due time }; // Login specific return values |