diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-16 17:40:44 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-16 17:40:44 +0000 |
commit | f3b32fd4a0af5956f33af94de41bdc8526911144 (patch) | |
tree | f6400de541ee488c43a2c5df4aac8c692c7a7cf6 /src/login_sql/login.h | |
parent | 006239e10f3c6f801fe4cb0a3de00979492a7058 (diff) | |
download | hercules-f3b32fd4a0af5956f33af94de41bdc8526911144.tar.gz hercules-f3b32fd4a0af5956f33af94de41bdc8526911144.tar.bz2 hercules-f3b32fd4a0af5956f33af94de41bdc8526911144.tar.xz hercules-f3b32fd4a0af5956f33af94de41bdc8526911144.zip |
committing my work on the login server (mostly SQL)
- removed the check_ip_flag from login&char (there since r1)
- removed the CMP_AUTHFIFO_IP and CMP_AUTHFIFO_LOGIN2 defines (also r1)
- removed dynamic_account_ban, gm_db settings, weren't doing anything at all
- modified the date_format setting to take the format string directly
- removed overly verbose config loading messages
- removed/simplified many more useless actions
- renamed the dynamic_pass_failure_ban_ settings to make more sense
- collected relevant config settings into a login_config structure and documented their purpose
- allowed usage of yes/no instead of the user-unfriendly 1/0 method in config settings (and added 1/0 as a possible option)
- fixed dnsbl which was always taking only the first entry into account
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10021 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login_sql/login.h')
-rw-r--r-- | src/login_sql/login.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/login_sql/login.h b/src/login_sql/login.h index 882a284e9..c1b9b671d 100644 --- a/src/login_sql/login.h +++ b/src/login_sql/login.h @@ -12,7 +12,7 @@ #ifndef SQL_DEBUG -#define mysql_query(_x, _y) mysql_real_query(_x, _y, strlen(_y)) //supports ' in names and runs faster [Kevin] +#define mysql_query(_x, _y) mysql_query(_x, _y) #else @@ -26,19 +26,18 @@ // When it is made 3, it corresponds to both. struct mmo_account { - int version; //Added by sirius for versioncheck + int version; char userid[NAME_LENGTH]; char passwd[NAME_LENGTH]; int passwdenc; - long account_id; long login_id1; long login_id2; long char_id; char lastlogin[24]; int sex; - int level; // added [zzo] + int level; }; struct mmo_char_server { @@ -50,5 +49,4 @@ struct mmo_char_server { int new_; }; - #endif /* _LOGIN_SQL_H_ */ |