summaryrefslogtreecommitdiff
path: root/src/net/loginhandler.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2009-10-04 22:28:19 +0200
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2009-10-04 22:31:43 +0200
commit924e0a887f87ce531bc5bd26cb55e410b7303383 (patch)
treea592304792e8ae877dabaa2062d6bdff1d406f02 /src/net/loginhandler.h
parentcff9f1947bac8fa49aaf6f846a6e4335a439ac2e (diff)
downloadmana-client-924e0a887f87ce531bc5bd26cb55e410b7303383.tar.gz
mana-client-924e0a887f87ce531bc5bd26cb55e410b7303383.tar.bz2
mana-client-924e0a887f87ce531bc5bd26cb55e410b7303383.tar.xz
mana-client-924e0a887f87ce531bc5bd26cb55e410b7303383.zip
Introduced Net::LoginHandler::SetEmailOnRegister
This "optional action" specifies whether the server expects to get an email address during registration. It is used now instead of having the general handlers of eAthena and tmwserv set a pointer to an email string on the GUI dialogs (to keep things understandable, the dependency should preferably go one way).
Diffstat (limited to 'src/net/loginhandler.h')
-rw-r--r--src/net/loginhandler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net/loginhandler.h b/src/net/loginhandler.h
index e4f8c767..e5a34382 100644
--- a/src/net/loginhandler.h
+++ b/src/net/loginhandler.h
@@ -36,8 +36,9 @@ class LoginHandler
{
public:
enum OptionalAction {
- Unregister = 0x1,
- ChangeEmail = 0x2
+ Unregister = 0x1,
+ ChangeEmail = 0x2,
+ SetEmailOnRegister = 0x4
};
virtual void setServer(const ServerInfo &server)