X-Git-Url: http://scm.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtHandle.pm;h=a62c6bef77de07b90cbf6a41711cc6f58708e6e5;hb=4769c7b97999c7df7f7c25f26d89902c2e86573b;hp=65aeeefa08c68aec890e81a3dcde9a94224abaf1;hpb=a4a03d4c1437e6239c35343a275c2c4436af7751;p=spider.git diff --git a/perl/DXProtHandle.pm b/perl/DXProtHandle.pm index 65aeeefa..a62c6bef 100644 --- a/perl/DXProtHandle.pm +++ b/perl/DXProtHandle.pm @@ -776,13 +776,14 @@ sub send_delayed_pc92 { my $self = shift; - # send out delayed PC92 config for this node if it is external + # send out new PC92 config to everyone else + my $line = gen_my_pc92_config($main::me); + $self->broadcast_route_pc9x($main::mycall, undef, $line, 0); + + # if this is an external node then send out the external config unless ($self->{do_pc92}) { - my $node = Route::Node::get($self->{call}); - if ($node) { - my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users; - $self->route_pc92c($main::mycall, undef, $node, @rout); - } + $line = gen_my_pc92_config(Route::Node::get($self->{call})); + $self->broadcast_route_pc9x($main::mycall, undef, $line, 0); } } @@ -879,17 +880,17 @@ sub handle_22 my $line = shift; my $origin = shift; - if ($self->{do_pc92} && $self->{state} ne 'init92') { - dbg("PCPROT: disconnecting because login call not sent in any pc92") if isdbg('chanerr'); - $self->send("**** You logged in with $self->{call} but that is NOT your \$mycall"); - $self->disconnect; - return; + if ($self->{do_pc92}) { + if ($self->{state} ne 'init92') { + dbg("PCPROT: disconnecting because login call not sent in any pc92") if isdbg('chanerr'); + $self->send("**** You logged in with $self->{call} but that is NOT your \$mycall"); + $self->disconnect; + return; + } } - - $self->state('normal'); $self->{lastping} = 0; - - $self->send_delayed_pc92 + $self->state('normal'); + $self->send_delayed_pc92; } # WWV info