From e76511e37e906c73d61aa65ec27efd9f060bf1a3 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 12 Feb 2026 21:19:11 +0300 Subject: Add support for n channel flag It's a flag that restricts a set of users able to write to a channel to those who joined. If not, reply 442 is sent upon PRIVMSG --- ircd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ircd.h') diff --git a/ircd.h b/ircd.h index 931948b..d4ed678 100644 --- a/ircd.h +++ b/ircd.h @@ -83,6 +83,7 @@ struct Channel enum ChannelMode { BIT(CHANNEL_SECRET), + BIT(CHANNEL_NOFROMOUT), } modes; }; -- cgit 1.4.1