X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fisupportmanager.h;h=75b83d6c16c10d931d1e7c0a76add03c8ab75206;hb=b191657921845a26128e910bfff0f21251e98ee4;hp=c62cd1ae30db1ca5b23ad8cfa09a5314967f47e2;hpb=831998ff16f28d0ab58c01aa2c47be488bf78b82;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/isupportmanager.h b/include/isupportmanager.h index c62cd1ae3..75b83d6c1 100644 --- a/include/isupportmanager.h +++ b/include/isupportmanager.h @@ -1,7 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2013 Peter Powell + * Copyright (C) 2017 Sadie Powell + * Copyright (C) 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 @@ -24,18 +25,28 @@ class CoreExport ISupportManager { private: /** The generated lines which are sent to clients. */ - std::vector Lines; + std::vector cachedlines; + + /** Escapes an ISUPPORT token value and appends it to the buffer. + * @param buffer The buffer to append to. + * @param value An ISUPPORT token value. + */ + void AppendValue(std::string& buffer, const std::string& value); public: - /** (Re)build the ISUPPORT vector. */ + /** (Re)build the ISUPPORT vector. + * Called by the core on boot after all modules have been loaded, and every time when a module is loaded + * or unloaded. Calls the On005Numeric hook, letting modules manipulate the ISUPPORT tokens. + */ void Build(); - /** Returns the std::vector of ISUPPORT lines. */ - const std::vector& GetLines() - { - return this->Lines; - } + /** Returns the cached std::vector of ISUPPORT lines. + * @return A list of Numeric::Numeric objects prepared for sending to users + */ + const std::vector& GetLines() const { return cachedlines; } - /** Send the 005 numerics (ISUPPORT) to a user. */ + /** Send the 005 numerics (ISUPPORT) to a user. + * @param user The user to send the ISUPPORT numerics to + */ void SendTo(LocalUser* user); };