X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXChannel.pm;h=580783a6a466383f2ae8fac35106c03d2f38e38f;hb=2bc468970b9ad5fa455e100688cbdd6ab8885edc;hp=01d2135e657e834eac2bf100d5e61f2e443f6036;hpb=50f6466ca2dff82ca470a4abe327d741cffef61a;p=spider.git diff --git a/perl/DXChannel.pm b/perl/DXChannel.pm index 01d2135e..580783a6 100644 --- a/perl/DXChannel.pm +++ b/perl/DXChannel.pm @@ -106,6 +106,8 @@ $count = 0; disconnecting => '9,Disconnecting,yesno', ann_talk => '0,Suppress Talk Anns,yesno', metric => '1,Route metric', + badcount => '1,Bad Word Count', + edit => '7,Edit Function', ); use vars qw($VERSION $BRANCH); @@ -506,8 +508,9 @@ sub rspfcheck { my ($self, $flag, $node, $user) = @_; my $nref = Route::Node::get($node); - if ($nref) { - if ($nref->dxchan == $self) { + my $dxchan = $nref->dxchan if $nref; + if ($nref && $dxchan) { + if ($dxchan == $self) { return 1 unless $user; my @users = $nref->users; return 1 if @users == 0 || grep $user eq $_, @users; @@ -544,7 +547,7 @@ sub broadcast_nodes # broadcast a message to all clusters ignoring isolation # [except those mentioned after buffer] -sub broadcast_all_ak1a +sub broadcast_all_nodes { my $s = shift; # the line to be rebroadcast my @except = @_; # to all channels EXCEPT these (dxchannel refs)