]> Untitled Git - mpdstream/commitdiff
Change default timeout to 5s
authorHugo Villeneuve <hvilleneuve@dimonoff.com>
Wed, 1 Apr 2026 23:13:24 +0000 (19:13 -0400)
committerHugo Villeneuve <hvilleneuve@dimonoff.com>
Wed, 1 Apr 2026 23:38:25 +0000 (19:38 -0400)
Original value of 1s doesn't seem to be working correctly
in some cases.

Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
src/options.c

index 4a10590518ad9b0a9af55056bba86e843435d8dd..c62a493aa1240f2c69ba247c318893d83f3074f3 100644 (file)
@@ -147,7 +147,7 @@ int parse_command_line_options(int argc, char *argv[])
        /* Setting default values. */
        options.host = NULL;
        options.port = 0;
-       options.start_delay = 1;
+       options.start_delay = 5;
        options.log_level = LOG_LEVEL_WARNING;
 
        /* Parse our arguments. */