See Changes
[spider.git] / perl / DXChannel.pm
index 8b1792cd148dc0caddb6f5180ef1907d149c7d05..240142c65107a80e6979fa417935f247fd4f1866 100644 (file)
@@ -135,7 +135,7 @@ $count = 0;
                  wx => '0,Want WX,yesno',                
                 );
 
-$maxerrors = 20;                               # the maximum number of concurrent errors allowed before disconnection
+$maxerrors = 5;                                # the maximum number of concurrent errors allowed before disconnection
 
 # object destruction
 sub DESTROY
@@ -175,6 +175,7 @@ sub alloc
        $self->{lang} = $main::lang if !$self->{lang};
        $self->{func} = "";
        $self->{width} ||=  80;
+       $self->{_nospawn} = 0;
 
        # add in all the dxcc, itu, zone info
        my @dxcc = Prefix::extract($call);
@@ -185,6 +186,11 @@ sub alloc
        }
        $self->{inqueue} = [];
 
+       if ($conn) {
+               $self->{hostname} = $self->{conn}->peerhost;
+               $self->{sockhost} = $self->{conn}->sockhost;
+       }
+
        $count++;
        dbg("DXChannel $self->{call} created ($count)") if isdbg('chan');
        bless $self, $pkg;