spider/cmd/set/here.pl

36 lines
661 B
Perl

#
# set the here flag
#
# Copyright (c) 1998 - Dirk Koopman
#
#
#
my ($self, $line) = @_;
my @args = split /\s+/, $line;
my $call;
my @out;
@args = $self->call if (!@args || $self->priv < 9);
foreach $call (@args) {
$call = uc $call;
my $dxchan = DXChannel::get($call);
if ($dxchan) {
$dxchan->here(1);
push @out, $self->msg('heres', $call);
my $ref = Route::User::get($call);
$ref = Route::Node::get($call) unless $ref;
if ($ref) {
$ref->here(1);
my $s = DXProt::pc24($ref);
DXProt::eph_dup($s);
DXChannel::broadcast_all_nodes($s, $main::me) ;
}
} else {
push @out, $self->msg('e3', "Set Here", $call);
}
}
return (1, @out);