Senderverify will only now do so if there are users in the node
routing entry.
+19Feb25======================================================================
+1. Make sure that the routing table has a number of users as well as a last
+ PC92 C records. This will prevent some of the false negatives (just not
+ that many).
16Feb25======================================================================
1. Changed Internet.pm to set $contest = "contest.dxtron.com";
This means that show/contest will work again. If you have a copy of
my $ip = $pcno == 61 ? $pc->[8] : '';
my ($hops) = $pc->[$pcno == 61 ? 9 : 8] =~ /H(\d+)/;
- if ($nroute && ($nroute->last_PC92C || ($local && !$local->do_pc9x))) {
+ if ($nroute && (($nroute->last_PC92C && $nroute->users) || ($local && !$local->do_pc9x))) {
# $s .= "User $pc->[6] not logged in, " unless $uroute;
$s .= "User $pc->[6] not on node $pc->[7], " unless $nroute->is_user($pc->[6]);
# $s .= "Node $pc->[7] at '$ip' not on Node's IP " . $nroute->ip if $ip && $nroute && $nroute->ip && $nroute->ip ne $ip;
$s .= "^" . scalar $nref->nodes;
$s .= "^" . scalar $nref->users;
$s .= "^$ipaddr" if $ipaddr;
+ $s .= "^$main::gitbranch/$main::gitversion" if $main::gitversion;
return $s . '^H99^';
}