changed ping regime to be a rolling list of up to ten
[spider.git] / perl / DXChannel.pm
index 3ccadeaf426e0864d355a76d095faa36d8ad54f8..9f7b8d180fefec8ce6f9184b0bbc122b5fc9bbc6 100644 (file)
@@ -78,6 +78,11 @@ use vars qw(%channels %valid);
                  inwwvfilter => '5,Input WWV Filter',
                  inspotfilter => '5,Input Spot Filter',
                  passwd => '9,Passwd List,parray',
+                 pingint => '9,Ping Interval ',
+                 nopings => '9,Ping Obs Count',
+                 lastping => '9,Ping last sent,atime',
+                 pingtime => '9,Ping totaltime,parray',
+                 pingave => '0,Ping ave time',
                 );
 
 # object destruction
@@ -165,6 +170,13 @@ sub del
        delete $channels{$self->{call}};
 }
 
+# is it a bbs
+sub is_bbs
+{
+       my $self = shift;
+       return $self->{'sort'} eq 'B';
+}
+
 # is it an ak1a cluster ?
 sub is_ak1a
 {
@@ -186,19 +198,30 @@ sub is_connect
        return $self->{'sort'} eq 'C';
 }
 
+# for perl 5.004's benefit
+sub sort
+{
+       my $self = shift;
+       return @_ ? $self->{'sort'} = shift : $self->{'sort'} ;
+}
+
 # handle out going messages, immediately without waiting for the select to drop
 # this could, in theory, block
 sub send_now
 {
        my $self = shift;
        my $conn = $self->{conn};
+       return unless $conn;
        my $sort = shift;
        my $call = $self->{call};
        
        for (@_) {
                chomp;
-               $conn->send_now("$sort$call|$_") if $conn;
-               dbg('chan', "-> $sort $call $_") if $conn;
+        my @lines = split /\n/;
+               for (@lines) {
+                       $conn->send_now("$sort$call|$_");
+                       dbg('chan', "-> $sort $call $_");
+               }
        }
        $self->{t} = time;
 }
@@ -210,12 +233,16 @@ sub send                                          # this is always later and always data
 {
        my $self = shift;
        my $conn = $self->{conn};
+       return unless $conn;
        my $call = $self->{call};
 
        for (@_) {
                chomp;
-               $conn->send_later("D$call|$_") if $conn;
-               dbg('chan', "-> D $call $_") if $conn;
+        my @lines = split /\n/;
+               for (@lines) {
+                       $conn->send_later("D$call|$_");
+                       dbg('chan', "-> D $call $_");
+               }
        }
        $self->{t} = time;
 }