summaryrefslogtreecommitdiff
path: root/structures.h
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2022-01-03 17:29:58 +0000
committerLuke Bratch <luke@bratch.co.uk>2022-01-03 17:29:58 +0000
commitc1799538e9bba02ac188c262f051e9bae6e612f8 (patch)
tree3ed277bf697f24d0cf72ffbb06134de328ab9ee5 /structures.h
parentd9a27856ab4e3c365ff9755acc6a147c0ae0339d (diff)
Increase maximum auto join channels from 10 to 40, correctly check for maximum configuration array length, correct configuration array debug output text.
Diffstat (limited to 'structures.h')
-rw-r--r--structures.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/structures.h b/structures.h
index 9e5f575..d070638 100644
--- a/structures.h
+++ b/structures.h
@@ -29,7 +29,7 @@
#define MAXPORTLEN 6 // Up to 65535, so 5 characters + 1 for null
#define CLIENTCODELEN 17 // Max length of a client code + 1 for null
#define MAXCLIENTCODES 64 // Max number of client codes to track
-#define MAXCONFARR 10 // Max number of entries that a configuration array can have
+#define MAXCONFARR 40 // Max number of entries that a configuration array can have
#define MAXCHANNICKS 8192 // Maximum number of nicks to track per channel
struct ircdstate {