diff options
author | Ibrahim Hossam <ibrahem.h.basyone@gmail.com> | 2014-04-08 20:40:12 +0200 |
---|---|---|
committer | Ibrahim Hossam <ibrahem.h.basyone@gmail.com> | 2014-04-18 09:58:42 +0200 |
commit | dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419 (patch) | |
tree | 219025c6ac65f2cf72798a45c926507633f3446f /src/char/inter.h | |
parent | 47680829048288376aec23102b9660f36f4463ee (diff) | |
download | hercules-dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419.tar.gz hercules-dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419.tar.bz2 hercules-dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419.tar.xz hercules-dd49dbc3e8d2033c0dddc80f1d5b3c8e6710a419.zip |
Rewritten NSI_UNIQUE_ID system to get rid of the cross-database interreg dependency
- Removes the need for map-server to access the interreg table to store the last used ID.
- Login, char and map databases can now be hosted separately.
- Note: the unique_id structure has changed, and it now contains the generator character ID in its upper 32 bits.
- Now NSI_UNIQUE_ID System is enabled always
Special thanks to Haruna.
Diffstat (limited to 'src/char/inter.h')
-rw-r--r-- | src/char/inter.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/char/inter.h b/src/char/inter.h index b484a1610..25b0c2a96 100644 --- a/src/char/inter.h +++ b/src/char/inter.h @@ -29,17 +29,4 @@ extern Sql* lsql_handle; int inter_accreg_tosql(int account_id, int char_id, struct accreg *reg, int type); -uint64 inter_chk_lastuid(int8 flag, uint64 value); -#ifdef NSI_UNIQUE_ID - #define updateLastUid(val_) inter_chk_lastuid(1, (val_)) - #define dbUpdateUid(handler_) do { \ - uint64 unique_id_ = inter_chk_lastuid(0, 0); \ - if (unique_id_ && SQL_ERROR == SQL->Query((handler_), "UPDATE `%s` SET `value`='%"PRIu64"' WHERE `varname`='unique_id'", interreg_db, unique_id_)) \ - Sql_ShowDebug(handler_);\ - } while(0) -#else - #define dbUpdateUid(handler_) - #define updateLastUid(val_) -#endif - #endif /* _CHAR_INTER_H_ */ |