fixed one ot two little buglets
[spider.git] / perl / client.pl
index cc185a17838622f4c2631464ca4ea5554947b39a..c39bda4c0fbde42c8b1e3890a85773e22be5c960 100755 (executable)
@@ -26,6 +26,7 @@
 # $Id$
 # 
 
+require 5.004;
 
 # search local then perl directories
 BEGIN {
@@ -55,7 +56,10 @@ sub cease
                $conn->send_now("Z$call|bye...\n");
        }
        $stdout->flush if $stdout;
-       kill(15, $pid) if $pid;
+       if ($pid) {
+               dbg('connect', "killing $pid");
+               kill(9, $pid);
+       }
        sleep(1);
        exit(0);        
 }
@@ -71,6 +75,7 @@ sub sig_chld
 {
        $SIG{CHLD} = \&sig_chld;
        $waitedpid = wait;
+       dbg('connect', "caught $pid");
 }
 
 
@@ -201,19 +206,18 @@ sub doconnect
                my ($host, $port) = split /\s+/, $line;
                $port = 23 if !$port;
                
-               if ($port == 23) {
-                       $sock = new Net::Telnet (Timeout => $timeout);
+#              if ($port == 23) {
+                       $sock = new Net::Telnet (Timeout => $timeout, Port => $port);
                        $sock->option_callback(\&optioncb);
                        $sock->output_record_separator('');
                        $sock->option_log('option_log');
                        $sock->dump_log('dump');
                        $sock->option_accept(Wont => TELOPT_ECHO);
                        $sock->open($host) or die "Can't connect to $host port $port $!";
-               } else {
-                       $sock = IO::Socket::INET->new(PeerAddr => "$host:$port", Proto => 'tcp')
-                               or die "Can't connect to $host port $port $!";
-                       
-               }
+#              } else {
+#                      $sock = IO::Socket::INET->new(PeerAddr => "$host:$port", Proto => 'tcp')
+#                              or die "Can't connect to $host port $port $!";
+#              }
        } elsif ($sort eq 'ax25' || $sort eq 'prog') {
                my @args = split /\s+/, $line;
                $rfh = new IO::File;
@@ -282,7 +286,7 @@ sub dochat
 sub timeout
 {
        dbg('connect', "timed out after $timeout seconds");
-       cease(10);
+       cease(0);
 }
 
 
@@ -348,28 +352,48 @@ if ($loginreq) {
        my $user;
        my $s;
 
+       if (-e "$data/issue") {
+               open(I, "$data/issue") or die;
+               local $/ = undef;
+               $issue = <I>;
+               close(I);
+               $issue = s/\n/\r/og if $mode == 1;
+               local $/ = $nl;
+               $stdout->print($issue) if issue;
+       }
+       
+
        DXUser->init($userfn);
        
+       # allow a login from an existing user. I could create a user but
+       # I want to check for valid callsigns and I don't have the 
+       # necessary info / regular expression yet
        for ($state = 0; $state < 2; ) {
                alarm($timeout);
                
                if ($state == 0) {
                        $stdout->print('login: ');
                        $stdout->flush();
-                       local $/ = $mode == 1 ? "\r" : "\n";
+                       local $\ = $nl;
                        $s = $stdin->getline();
                        chomp $s;
+                       $s =~ s/\s+//og;
+                       $s =~ s/-\d+$//o;            # no ssids!
+                       cease(0) unless $s gt ' ';
                        $call = uc $s;
                        $user = DXUser->get($call);
                        $state = 1;
                } elsif ($state == 1) {
                        $stdout->print('password: ');
                        $stdout->flush();
-                       local $/ = $mode == 1 ? "\r" : "\n";
+                       local $\ = $nl;
                        $s = $stdin->getline();
                        chomp $s;
                        $state = 2;
-                       cease(0) if !$user || ($user->passwd && $user->passwd ne $s);
+                       if (!$user || ($user->passwd && $user->passwd ne $s)) {
+                               $stdout->print("sorry...$nl");
+                               cease(0);
+                       }
                }
        }
 }
@@ -391,7 +415,7 @@ if ($connsort eq "connect") {
        @in = <IN>;
        close IN;
        
-       #       alarm($timeout);
+       alarm($timeout);
        
        for (@in) {
                chomp;