set $main::maxconnect back to 0 as default
authorDirk Koopman <djk@tobit.co.uk>
Sat, 4 Oct 2008 12:35:36 +0000 (13:35 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Sat, 4 Oct 2008 12:35:36 +0000 (13:35 +0100)
Changes
perl/Version.pm
perl/cluster.pl

diff --git a/Changes b/Changes
index 4a337629089fb5dcc06e570952ab05fccb00ade3..43e89e8e3f4e82f9e57e437dc2f1847c030f8796 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+04Oct08=======================================================================
+1. set $main::maxconnect_node = 0 as default. It's causing too much aggro..
 02Oct08=======================================================================
 1. Add set/maxconnect command to allow the defaults to be overridden for
 individual users/nodes.
index c54f29dde56cc52c435a437beaaf00ad9047a5bd..3736ce50bf54220cdde26d6406d2f8738cf0c199 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.55';
 $subversion = '0';
-$build = '30';
+$build = '31';
 
 1;
index 1fca891754bed6bf9b5bcf49b072afb7a5610279..bc57440f3dc31f5ce95a8f38d41ac565b8cdfae8 100755 (executable)
@@ -130,7 +130,7 @@ $reqreg = 0;                                        # 1 = registration required, 2 = deregister people
 $bumpexisting = 1;                             # 1 = allow new connection to disconnect old, 0 - don't allow it
 $allowdxby = 0;                                        # 1 = allow "dx by <othercall>", 0 - don't allow it
 $maxconnect_user = 3;                  # the maximum no of concurrent connections a user can have at a time
-$maxconnect_node = 8;                  # Ditto but for nodes. In either case if a new incoming connection
+$maxconnect_node = 0;                  # Ditto but for nodes. In either case if a new incoming connection
                                                                # takes the no of references in the routing table above these numbers
                                                                # then the connection is refused. This only affects INCOMING connections.