From: Dirk Koopman Date: Sat, 4 Oct 2008 12:35:36 +0000 (+0100) Subject: set $main::maxconnect back to 0 as default X-Git-Tag: 1.56~65 X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=85bdc933dd042496fb40f3886ca80e2b04cfb1b6 set $main::maxconnect back to 0 as default --- diff --git a/Changes b/Changes index 4a337629..43e89e8e 100644 --- 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. diff --git a/perl/Version.pm b/perl/Version.pm index c54f29dd..3736ce50 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.55'; $subversion = '0'; -$build = '30'; +$build = '31'; 1; diff --git a/perl/cluster.pl b/perl/cluster.pl index 1fca8917..bc57440f 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -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 ", 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.