diff options
author | shennetsind <ind@henn.et> | 2013-03-14 20:15:07 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-03-14 20:15:07 -0300 |
commit | 84e8f1872f0f00d6f82d6fe85974bb1f37247c53 (patch) | |
tree | 758980ea103f740ea98f2527a48869737f5f4f30 /src/char/pincode.h | |
parent | 54b5ec95ca29216dcdac7e913f8a0c959a6c14a4 (diff) | |
download | hercules-84e8f1872f0f00d6f82d6fe85974bb1f37247c53.tar.gz hercules-84e8f1872f0f00d6f82d6fe85974bb1f37247c53.tar.bz2 hercules-84e8f1872f0f00d6f82d6fe85974bb1f37247c53.tar.xz hercules-84e8f1872f0f00d6f82d6fe85974bb1f37247c53.zip |
Fixed Pin Code Feature
Now cross-platform, and stable ( after fixing I tested it a couple dozen times ).
Special Thanks to Yommy for providing me with his packet list, without it I would have never figured what was wrong with it.
Special Thanks to Jeroen who reported a inconsistency on the feature when used on windows.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/char/pincode.h')
-rw-r--r-- | src/char/pincode.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/char/pincode.h b/src/char/pincode.h index 209817c78..1856e4baa 100644 --- a/src/char/pincode.h +++ b/src/char/pincode.h @@ -19,17 +19,19 @@ struct pincode_interface { int *enabled; int *changetime; int *maxtry; - unsigned long *multiplier; - unsigned long *baseSeed; + int *charselect; + unsigned int *multiplier; + unsigned int *baseSeed; /* handler */ void (*handle) (int fd, struct char_session_data* sd); - void (*decrypt) (unsigned long userSeed, char* pin); + void (*decrypt) (unsigned int userSeed, char* pin); void (*error) (int account_id); void (*update) (int account_id, char* pin); void (*state) (int fd, struct char_session_data* sd, uint16 state); void (*new) (int fd, struct char_session_data* sd); void (*change) (int fd, struct char_session_data* sd); int (*compare) (int fd, struct char_session_data* sd, char* pin); + void (*pass) (struct char_session_data *sd); void (*check) (int fd, struct char_session_data* sd); bool (*config_read) (char *w1, char *w2); } pincode_s; |