X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtout.pm;h=67376e11f5efc5dd3e487949d0871dad6cdd2436;hb=e3d9a376f71c1a517a8b6e99a79c3016fd5d8c5f;hp=cacf60e0c756a67612452ab192bb07c50be157c6;hpb=7ccae7dc99f806c3a0b128a0cf26cf8e489048fb;p=spider.git diff --git a/perl/DXProtout.pm b/perl/DXProtout.pm index cacf60e0..67376e11 100644 --- a/perl/DXProtout.pm +++ b/perl/DXProtout.pm @@ -363,32 +363,6 @@ sub pc85 # spider route broadcast sub pc90 { - my $node = shift; - my $sort = shift; - my @out; - my $dxchan; - my $n = @_; - - while (@_) { - my $str = sprintf "PC90^%s^%X^%s%d", $node->call, $main::systime, $sort, $n-1 ; - for (; @_ && length $str < 200;) { - my $ref = shift; - next if $ref == $main::me; - my $call = $ref->call; - my $flag = 0; - $flag += 1 if $ref->here; - $flag += 2 if $ref->conf; - if ($ref->is_node) { - my $ping = int($ref->pingave * 10); - $str .= "^N$flag$call,$ping"; - } else { - $str .= "^U$flag$call"; - } - } - $str .= sprintf "^%s^", get_hops(90); - push @out, $str; - } - return @out; } 1;