diff options
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 6c000eb60..622c44d0d 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -453,6 +453,7 @@ class ServerConfig : public Extensible * modules. */ std::string data005; + std::vector<std::string> isupport; /** STATS characters in this list are available * only to operators. @@ -504,6 +505,14 @@ class ServerConfig : public Extensible */ void ClearStack(); + /** Update the 005 vector + */ + void Update005(); + + /** Send the 005 numerics (ISUPPORT) to a user + */ + void Send005(userrec* user); + /** Read the entire configuration into memory * and initialize this class. All other methods * should be used only by the core. |