X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXChannel.pm;h=8384567003685d54e1a5dfe155095e2a91e573db;hb=ec1b2a19fcc6539f071a766671b5fa5be8694362;hp=517372fa9446b49aba4799c3528483dddb203381;hpb=281b5d6baba694aa7b99be87a7be46a59ed0bd6c;p=spider.git diff --git a/perl/DXChannel.pm b/perl/DXChannel.pm index 517372fa..83845670 100644 --- a/perl/DXChannel.pm +++ b/perl/DXChannel.pm @@ -707,17 +707,15 @@ sub broadcast_list sub process { foreach my $dxchan (values %channels) { - + + next if $dxchan->{disconnecting}; + while (my $data = shift @{$dxchan->{inqueue}}) { my ($sort, $call, $line) = $dxchan->decode_input($data); next unless defined $sort; # do the really sexy console interface bit! (Who is going to do the TK interface then?) dbg("<- $sort $call $line") if $sort ne 'D' && isdbg('chan'); - if ($dxchan->{disconnecting}) { - dbg('In disconnection, ignored'); - next; - } # handle A records my $user = $dxchan->user;