about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-07-20 13:19:36 +0200
committerAlexander Barton <alex@barton.de>2014-07-20 13:19:36 +0200
commit40ed94a1f23aa120cb80bcf8224cef69124909f1 (patch)
treea3f3e20dc2d32c623656fc35d069317549240c30
parentc1f180b87b424b65d9b75299047148b7d01c2cc2 (diff)
downloadngircd-40ed94a1f23aa120cb80bcf8224cef69124909f1.tar.gz
ngircd-40ed94a1f23aa120cb80bcf8224cef69124909f1.zip
Increase MAX_SERVERS from 16 to 64
There are installations out there that would like to configure more
than 16 links per server, so increase this limit. Best would be to
get rid of MAX_SERVERS altogether and make if fully dynamic, but
start with this quick and dirty hack ...
-rw-r--r--src/ngircd/defines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h
index 4acdc477..a140c9d1 100644
--- a/src/ngircd/defines.h
+++ b/src/ngircd/defines.h
@@ -53,7 +53,7 @@
 /* Size of structures */
 
 /** Max. count of configurable servers. */
-#define MAX_SERVERS 16
+#define MAX_SERVERS 64
 
 /** Max. number of WHOWAS list items that can be stored. */
 #define MAX_WHOWAS 64