02Oct08=======================================================================
1. Add set/maxconnect command to allow the defaults to be overridden for
individual users/nodes.
+2. Make sure that the check really is for incoming connections only...
01Oct08=======================================================================
1. added CTY-1809 prefix data
2. added new config variables to allow an incoming users to have (as default)
# (fairly) politely disconnect people that are connected to too many other places at once
my $r = Route::get($call);
- if ($r && $user) {
+ if ($conn->{sort} =~ /^I/ && $r && $user) {
my @n = $r->parents;
my $m = $r->isa('Route::Node') ? $maxconnect_node : $maxconnect_user;
my $c = $user->maxconnect;