diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 20:07:53 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 20:07:53 +0000 |
commit | 187ad9248b52c8fc083f63dc1155bb490e20f280 (patch) | |
tree | 43b77e50f5235ac416caebb25665ee6b63a52936 /src/login/login.h | |
parent | 43aa8bba7be095cd630a04a93338877ae6aedcad (diff) | |
download | hercules-187ad9248b52c8fc083f63dc1155bb490e20f280.tar.gz hercules-187ad9248b52c8fc083f63dc1155bb490e20f280.tar.bz2 hercules-187ad9248b52c8fc083f63dc1155bb490e20f280.tar.xz hercules-187ad9248b52c8fc083f63dc1155bb490e20f280.zip |
Added login.c to hold most of the common functionality of the login server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12479 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login/login.h')
-rw-r--r-- | src/login/login.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/login/login.h b/src/login/login.h index 4c1ea07e7..a4256df53 100644 --- a/src/login/login.h +++ b/src/login/login.h @@ -91,5 +91,21 @@ struct mmo_account { struct global_reg account_reg2[ACCOUNT_REG2_NUM]; // account script variables (stored on login server) }; +struct auth_node { + + int account_id; + uint32 login_id1; + uint32 login_id2; + uint32 ip; + char sex; +}; + +struct online_login_data { + + int account_id; + int waiting_disconnect; + int char_server; +}; + #endif /* _LOGIN_H_ */ |