X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fclient.pl;h=b7bb5452f684becf01bc12273b1e89d37dd0ccef;hb=f2e898274129b45146a83630928e484d814a322a;hp=5b35ee2dc83fb98c236d9f0055766f93eaf973de;hpb=b473fa8950fc9a6b747be44434569dec254b0897;p=spider.git diff --git a/perl/client.pl b/perl/client.pl index 5b35ee2d..b7bb5452 100755 --- a/perl/client.pl +++ b/perl/client.pl @@ -221,7 +221,7 @@ sub dochat dbg('connect', "CHAT \"$expect\" -> \"$send\""); my $line; - # alarm($timeout); + alarm($timeout); if ($expect) { if ($csort eq 'telnet') { @@ -243,7 +243,7 @@ sub dochat $sock->print("$send\n"); } elsif ($csort eq 'ax25') { local $\ = "\r"; - $wfh->print("$send\r"); + $wfh->print("$send"); } dbg('connect', "sent \"$send\""); } @@ -293,7 +293,16 @@ $call = uc $myalias if !$call; $connsort = lc shift @ARGV; $connsort = 'local' if !$connsort; -$mode = ($connsort =~ /^ax/o) ? 1 : 2; +# +# strip off any SSID if it is a telnet connection +# +# SSID's are a problem, basically we don't allow them EXCEPT for the special case +# of local users. i.e. you can have a cluster call with an SSID and a usercall with +# an SSID and they are different to the system to those without SSIDs +# + +$call =~ s/-\d+$//o if $mode eq 'telnet'; +$mode = ($connsort eq 'ax25') ? 1 : 2; setmode(); if ($call eq $mycall) {