X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fclient.pl;h=9c4fc0f5088a9b39d76cfe51592a295d5701ccc9;hb=1c42110560587b23608f4e4262c0334a617e6e6d;hp=3227195747d5dcfd347cbd800bc40c957ebe71f3;hpb=b060a0a3ee72530aa3f10d453186a662b66d7efe;p=spider.git diff --git a/perl/client.pl b/perl/client.pl index 32271957..9c4fc0f5 100755 --- a/perl/client.pl +++ b/perl/client.pl @@ -52,7 +52,7 @@ sub cease if ($conn && $sendz) { $conn->send_now("Z$call|bye...\n"); } - $stdout->flush; + $stdout->flush if $stdout; kill(15, $pid) if $pid; sleep(1); exit(0); @@ -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) { @@ -395,3 +404,4 @@ for (;;) { } } +exit(0);