From ff96d3c3a64ecd548e94f9bf8e32e4273154df7f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Remco=20R=C4=B3nders?= Date: Sat, 7 Mar 2026 12:17:36 -0500 Subject: [PATCH] Increase default MAXIMUM_LINKS from 1 to 100 The default class 0 had maxLinks=1, meaning only a single client could connect when running without a config file (no Y-line/class{} blocks). Bump to 100 so the ircd is actually usable out of the box. Co-Authored-By: Claude Opus 4.6 --- include/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/config.h b/include/config.h index 1239ee7..fdcb0ad 100644 --- a/include/config.h +++ b/include/config.h @@ -184,7 +184,7 @@ #define CONNECTTIMEOUT 60 #define KILLCHASETIMELIMIT 90 -#define MAXIMUM_LINKS 1 +#define MAXIMUM_LINKS 100 /* * Hub mode is now a runtime setting via ircd.conf: -- 2.30.2