From 94fb9798c5476a9a3111f3982f357920b18c2fd0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 24 Jun 2020 13:36:24 -0400 Subject: Bump ParamCap to 254 Apparently IRCds have decided that the 15-parameter limit doesn't matter anymore. 254 is the maximum number of single-byte parameters (following a single-byte command) which fit in a 512-byte CR-LF-terminated line. When everyone decides that the 512-byte line length limit doesn't matter either, I will delete my software and people can use some JavaScript garbage instead. This makes struct Message 2080 bytes, but there's only ever one or two of them around at once. Avoid passing it by value to handle. --- chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chat.c') diff --git a/chat.c b/chat.c index 913ce78..962de28 100644 --- a/chat.c +++ b/chat.c @@ -337,7 +337,7 @@ int main(int argc, char *argv[]) { .cmd = "QUIT", .params[0] = self.quit, }; - handle(msg); + handle(&msg); ircClose(); logClose(); -- cgit 1.4.1