X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=b46d00f97d95b9de5be22bf5b43c87236302a47c;hb=054659107044d10020c781b8709b50aeabb09e76;hp=a6abadc83ab1384936093c0954f11fce13a19f9d;hpb=4fe4a738fd4f10f57951d1ce9915389174c0921f;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index a6abadc8..b46d00f9 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -929,25 +929,23 @@ sub handle_17 my $uref = Route::User::get($ucall); unless ($uref) { dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr'); + return; } my $parent = Route::Node::get($ncall); unless ($parent) { dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr'); + return; } - $dxchan = $parent->dxchan if $parent; + $dxchan = DXChannel::get($ncall); if ($dxchan && $dxchan ne $self) { dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr'); return; } # input filter if required and then remove user if present - if ($parent) { # return unless $self->in_filter_route($parent); - $parent->del_user($uref) if $uref; - } else { - $parent = Route->new($ncall); # throw away - } + $parent->del_user($uref); # send info to all logged in thingies $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node; @@ -958,7 +956,6 @@ sub handle_17 return; } - $uref = Route->new($ucall) unless $uref; # throw away $self->route_pc17($origin, $line, $parent, $uref); } @@ -1490,6 +1487,10 @@ sub handle_41 $user = DXUser->new($call) unless $user; if ($_[2] == 1) { + if ($_[2] =~ /spotter/i) { + dbg("PCPROT: invalid name") if isdbg('chanerr'); + return; + } $user->name($_[3]); } elsif ($_[2] == 2) { $user->qth($_[3]);