Commit 3aced17c authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

don't restart sockfilt after only 5 seconds of inactivity

parent bac63914
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    };