1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 03:23:12 +02:00

Update output of MODULE command (MODULE -all) to include the author,

slightly change the output and use RPL_TXT rather than NOTICE.
This commit is contained in:
Bram Matthys
2019-08-27 14:12:00 +02:00
parent fc69c5300e
commit 17c6b5976d
18 changed files with 106 additions and 78 deletions
+8 -8
View File
@@ -19,6 +19,14 @@
#include "unrealircd.h"
ModuleHeader MOD_HEADER(tkldb) = {
"tkldb",
"1.10",
"Stores active TKL entries (*-Lines) persistently/across IRCd restarts",
"UnrealIRCd Team",
"unrealircd-5",
};
#define TKL_DB_VERSION 1100
#define TKL_DB_SAVE_EVERY 299
@@ -104,14 +112,6 @@ static struct cfgstruct cfg;
static int tkls_loaded = 0;
ModuleHeader MOD_HEADER(tkldb) = {
"tkldb",
"v1.10",
"Stores active TKL entries (*-Lines) persistently/across IRCd restarts",
"UnrealIRCd Team",
"unrealircd-5",
};
MOD_TEST(tkldb)
{
memset(&cfg, 0, sizeof(cfg));