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.
master
C. McEnroe 2020-02-15 22:59:04 -05:00
parent 700b5d5870
commit fa4e81d480
1 changed files with 5 additions and 0 deletions

5
chat.c
View File

@ -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();