diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-06 20:57:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-07 00:35:13 +0300 |
commit | d808fef992c2f37bd89fd8336f20cf587016e5a9 (patch) | |
tree | 2d390c3f544316b3713a9ba372aa3b0afa0667ce /src/map/sessionext.h | |
parent | feba0e8cd021ab0a0b469e79125dfc794442db17 (diff) | |
download | plugin-d808fef992c2f37bd89fd8336f20cf587016e5a9.tar.gz plugin-d808fef992c2f37bd89fd8336f20cf587016e5a9.tar.bz2 plugin-d808fef992c2f37bd89fd8336f20cf587016e5a9.tar.xz plugin-d808fef992c2f37bd89fd8336f20cf587016e5a9.zip |
Add packet for accept client version in map server.
Add struct for additional connection data.
Add functions for get additional connection data.
Impliment script function: getclientversion.
Diffstat (limited to 'src/map/sessionext.h')
-rw-r--r-- | src/map/sessionext.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map/sessionext.h b/src/map/sessionext.h new file mode 100644 index 0000000..e03e276 --- /dev/null +++ b/src/map/sessionext.h @@ -0,0 +1,12 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 Evol developers + +#ifndef EVOL_MAP_SESSIONEXT +#define EVOL_MAP_SESSIONEXT + +struct SessionExt +{ + int clientVersion; +}; + +#endif // EVOL_MAP_SESSIONEXT |