Reduce minimum timeout to 1 second

This commit is contained in:
Johannes Hostert 2023-11-08 00:41:21 +01:00 committed by Marco Trevisan
parent 8010adea9c
commit b79ac14b0f
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ authentication failure. The minimum number of tries is 1 while the default is 3.
=item B<timeout=I<TIMEOUT>>
The amount of time before returning an authentication failure. The default timeout
is 30 seconds, with 10 seconds being the minimum.
is 30 seconds, with 1 second being the minimum.
=back

View file

@ -75,7 +75,7 @@
#define DEFAULT_MAX_TRIES 3
#define DEFAULT_TIMEOUT 30
#define MIN_TIMEOUT 10
#define MIN_TIMEOUT 1
#define DEBUG_MATCH "debug="
#define MAX_TRIES_MATCH "max-tries="