diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-22 20:41:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-22 20:57:06 +0300 |
commit | d27c8b53bcd8c7e8e0aa74656e32aeb688629b4b (patch) | |
tree | 97437c91403731ced2c099c6906c00716f8a3a1d /src/net/tmwa/updateprotocol.cpp | |
parent | 0533718792de26406c56257e4aea7f28d898a132 (diff) | |
download | plus-d27c8b53bcd8c7e8e0aa74656e32aeb688629b4b.tar.gz plus-d27c8b53bcd8c7e8e0aa74656e32aeb688629b4b.tar.bz2 plus-d27c8b53bcd8c7e8e0aa74656e32aeb688629b4b.tar.xz plus-d27c8b53bcd8c7e8e0aa74656e32aeb688629b4b.zip |
add way for reload packets db. For now it useless.
Diffstat (limited to 'src/net/tmwa/updateprotocol.cpp')
-rw-r--r-- | src/net/tmwa/updateprotocol.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/net/tmwa/updateprotocol.cpp b/src/net/tmwa/updateprotocol.cpp new file mode 100644 index 000000000..59d0d836a --- /dev/null +++ b/src/net/tmwa/updateprotocol.cpp @@ -0,0 +1,44 @@ +/* + * The ManaPlus Client + * Copyright (C) 2015 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/>. + */ + +#include "net/tmwa/updateprotocol.h" + +#include "net/tmwa/network.h" +#include "net/tmwa/protocolout.h" + +#include "debug.h" + +namespace TmwAthena +{ + +void updateProtocol() +{ +#include "net/protocoloutupdate.h" +#include "net/tmwa/packetsout.inc" +#undef packet + Network *const network = Network::mInstance; + if (network) + { + network->clearHandlers(); + network->registerHandlers(); + } +} + +} // namesspace TmwAthena |