X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_topiclock.cpp;h=c6125878455fe10ad9c095dd452b9dec5dc5eca2;hb=0a329440bd1d0fa642ce2f3e14bc88125377b5bd;hp=b0d004b1cf1c25ce957aa4ccae3356e7ead3eca8;hpb=87b1461e2a4710a38b32186c2582da9fe9bb3804;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_topiclock.cpp b/src/modules/m_topiclock.cpp index b0d004b1c..c61258784 100644 --- a/src/modules/m_topiclock.cpp +++ b/src/modules/m_topiclock.cpp @@ -1,7 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2012 Attila Molnar + * Copyright (C) 2013, 2017-2019 Sadie Powell + * Copyright (C) 2012, 2014-2016 Attila Molnar * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -73,6 +74,7 @@ class CommandSVSTOPIC : public Command } }; +// TODO: add a BoolExtItem to replace this. class FlagExtItem : public ExtensionItem { public: @@ -86,15 +88,18 @@ class FlagExtItem : public ExtensionItem return (get_raw(container) != NULL); } - std::string serialize(SerializeFormat format, const Extensible* container, void* item) const CXX11_OVERRIDE + std::string ToHuman(const Extensible* container, void* item) const CXX11_OVERRIDE { - if (format == FORMAT_USER) - return "true"; + // Make the human version more readable. + return "true"; + } + std::string ToNetwork(const Extensible* container, void* item) const CXX11_OVERRIDE + { return "1"; } - void unserialize(SerializeFormat format, Extensible* container, const std::string& value) CXX11_OVERRIDE + void FromNetwork(Extensible* container, const std::string& value) CXX11_OVERRIDE { if (value == "1") set_raw(container, this); @@ -146,7 +151,7 @@ class ModuleTopicLock : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Implements server-side topic locks and the server-to-server command SVSTOPIC", VF_COMMON | VF_VENDOR); + return Version("Allows services to lock the channel topic so that it can not be changed.", VF_COMMON | VF_VENDOR); } };