From: Daniel Stenberg Date: Tue, 24 May 2005 21:09:49 +0000 (+0000) Subject: don't restart sockfilt after only 5 seconds of inactivity X-Git-Tag: curl-7_14_1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aced17c75794d42bc6803aacd0ef2881343533f;p=thirdparty%2Fcurl.git don't restart sockfilt after only 5 seconds of inactivity --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index d546bae8f9..1334e90681 100644 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -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 = ; alarm 0; };