Skip to content

Commit

Permalink
Reduce netlink timeout to 30 seconds.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Jan 26, 2024
1 parent 4810459 commit f264d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netlink.pl
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@
-e environ parse environment for tests from shell script
-i iface interface, may contain number: @allifaces
-m modify modify mode: @allmodifymodes
-t timeout timeout for a single test, default 60 seconds
-t timeout timeout for a single test, default 30 seconds
-v verbose
test ... test mode: @alltestmodes
appending 4 or 6 to a test restricts the IP version.
EOF
exit(2);
};
my $timeout = $opts{t} || 60;
my $timeout = $opts{t} || 30;
environment($opts{e}) if $opts{e};
my $pseudo = $opts{c} || "none";
my $iface = $opts{i} || "none";
Expand Down

0 comments on commit f264d4b

Please sign in to comment.