diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-05 07:13:08 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-05 07:13:08 +0100 |
commit | e1224ac4864d822d49ea8ecddca38d72f429c767 (patch) | |
tree | 566b14d513482866d363954d99dfcf8ba8cb69ca /modules | |
parent | ddd33e65b46c146903acf56d6755a6d6ca7072ea (diff) |
Ignore the SLOG message on UnrealIRCd.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/protocol/unrealircd.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp index c90ed64fd..7e37e1f27 100644 --- a/modules/protocol/unrealircd.cpp +++ b/modules/protocol/unrealircd.cpp @@ -1703,6 +1703,9 @@ class ProtoUnreal final Message::Version message_version; Message::Whois message_whois; + /* Ignored message handlers. */ + Message::Ignore message_slog; + /* Our message handlers */ IRCDMessageCapab message_capab; IRCDMessageChgHost message_chghost; @@ -1749,6 +1752,7 @@ public: , message_time(this) , message_version(this) , message_whois(this) + , message_slog(this, "SLOG") , message_capab(this) , message_chghost(this) , message_chgident(this) |