added ssid handling
[spider.git] / perl / cluster.pl
index a46e3b2d58f692e9905666b4618484a47c8be18a..751a68a851f88f7a725306097c3e3c3fe6e4a81a 100755 (executable)
@@ -113,16 +113,6 @@ sub rec
        # set up the basic channel info - this needs a bit more thought - there is duplication here
        if (!defined $dxchan) {
                my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
-               my ($scall, $ssid) = split /-/, $call;
-               
-               # adjust the callsign if it has an SSID, SSID <= 8 are legal > 8 are netrom connections
-        if ($ssid) {
-                       $ssid = 15 if $ssid > 15;
-                       if ($ssid > 8) {
-                               $ssid = 15 - $ssid;
-                               $call = "$scall-$ssid";
-                       }
-               }
  
                # is there one already connected to me - locally? 
                my $user = DXUser->get($call);