diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/net/protocol.h | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -8,6 +8,7 @@ change. * src/net/accountserver/account.h, src/net/accountserver/account.cpp, src/net/protocol.h: Made it work nicely with the server. + * src/protocol.h: Generic return values were incomplete client-side. 2008-04-25 David Athay <ko2fan@gmail.com> 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 |