diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-07 22:54:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-07 22:54:40 +0300 |
commit | a6a60342beacd628626c861b835688babcddcca0 (patch) | |
tree | dfebf033a2fb32137792b9ef3a4b6ece3a7d4107 /src/const | |
parent | ad6ed5131f02cdcba89cfeab3a23ed4ead3db52c (diff) | |
download | plus-a6a60342beacd628626c861b835688babcddcca0.tar.gz plus-a6a60342beacd628626c861b835688babcddcca0.tar.bz2 plus-a6a60342beacd628626c861b835688babcddcca0.tar.xz plus-a6a60342beacd628626c861b835688babcddcca0.zip |
Move max packet version constant into separate file.
Diffstat (limited to 'src/const')
-rw-r--r-- | src/const/net/maxpacketversion.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/const/net/maxpacketversion.h b/src/const/net/maxpacketversion.h new file mode 100644 index 000000000..d684297d5 --- /dev/null +++ b/src/const/net/maxpacketversion.h @@ -0,0 +1,32 @@ +/* + * The ManaPlus Client + * Copyright (C) 2013-2016 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef CONST_NET_MAXPACKETVERSION_H +#define CONST_NET_MAXPACKETVERSION_H + +#if defined(__GXX_EXPERIMENTAL_CXX0X__) +#include <cstdint> +#else +#include <stdint.h> +#endif + +static const uint32_t maxPacketVersion = 20150916; + +#endif // CONST_NET_MAXPACKETVERSION_H |