don't restart sockfilt after only 5 seconds of inactivity
authorDaniel Stenberg <daniel@haxx.se>
Tue, 24 May 2005 21:09:49 +0000 (21:09 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 24 May 2005 21:09:49 +0000 (21:09 +0000)
tests/ftpserver.pl

index d546bae..1334e90 100644 (file)
@@ -722,7 +722,7 @@ while(1) {
     my $input;
     eval {
         local $SIG{ALRM} = sub { die "alarm\n" };
-        alarm 5; # just in case things go bad
+        alarm 360; # just in case things go REALLY bad
         $input = <STDIN>;
         alarm 0;
     };