From fa4e81d480265cc3c067fc7b2b8887d4a4300cc0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 15 Feb 2020 22:59:04 -0500 Subject: Set defaults for various types of modes These are actually from RFC 1459, since that seems to be the more likely lowest common denominator, so I should maybe it it to STANDARDS (along with ircdocs' section on ISUPPORT). RFC 2812 has a lot of stuff that isn't currently used. --- chat.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'chat.c') diff --git a/chat.c b/chat.c index ef135bc..16ecb8a 100644 --- a/chat.c +++ b/chat.c @@ -191,6 +191,11 @@ int main(int argc, char *argv[]) { set(&network.name, host); set(&network.chanTypes, "#&"); set(&network.prefixes, "@+"); + set(&network.prefixModes, "ov"); + set(&network.listModes, "b"); + set(&network.paramModes, "k"); + set(&network.setParamModes, "l"); + set(&network.channelModes, "imnpst"); set(&self.nick, "*"); commandComplete(); -- cgit 1.4.1