diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-06-28 00:00:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-06-29 19:47:42 +0300 |
commit | a6f6b34df65d36fb7609b93c2305c8507dc79e8d (patch) | |
tree | 565ad0b38e5a1ce9228e57b735777debf26fc747 /src/map/clif.h | |
parent | 6fa931559839564a3ddf21587c2d4322cc28fda4 (diff) | |
download | hercules-a6f6b34df65d36fb7609b93c2305c8507dc79e8d.tar.gz hercules-a6f6b34df65d36fb7609b93c2305c8507dc79e8d.tar.bz2 hercules-a6f6b34df65d36fb7609b93c2305c8507dc79e8d.tar.xz hercules-a6f6b34df65d36fb7609b93c2305c8507dc79e8d.zip |
Add support for new auth error packet in zero.
Add support for known auth error packets in map server (before was used only old packet).
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index e7db9a9b8..63eaeff49 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -698,6 +698,7 @@ struct clif_interface { unsigned short (*decrypt_cmd) ( int cmd, struct map_session_data *sd ); /* auth */ void (*authok) (struct map_session_data *sd); + void (*auth_error) (int fd, int errorCode); void (*authrefuse) (int fd, uint8 error_code); void (*authfail_fd) (int fd, int type); void (*charselectok) (int id, uint8 ok); |