]> git.ipfire.org Git - fireperf.git/commitdiff
client: Remove default timeout
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 22 Feb 2021 19:22:18 +0000 (19:22 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 22 Feb 2021 19:22:18 +0000 (19:22 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/main.c
src/main.h

index 84e40a7fe7452185962e9d3aa5bcde781c3babd3..532a168672d2f5e96471d7ead65b0930d4727d8a 100644 (file)
@@ -255,7 +255,6 @@ int main(int argc, char* argv[]) {
                .mode = FIREPERF_MODE_NONE,
                .port = DEFAULT_PORT,
                .parallel = DEFAULT_PARALLEL,
-               .timeout = DEFAULT_TIMEOUT,
        };
        struct fireperf_stats stats = { 0 };
        int r;
index 738516fbfbe8ad0b3dff32324737001d8407fac3..890860e5a7688eeb0a8a78be287946e4a5b9978c 100644 (file)
@@ -31,7 +31,6 @@
 #define DEFAULT_PORT 5001
 #define DEFAULT_LISTENING_SOCKETS 1
 #define DEFAULT_RANDOM_POOL_SIZE       (SOCKET_SEND_BUFFER_SIZE * 512)
-#define DEFAULT_TIMEOUT 300
 
 #define MAX_PARALLEL (1 << 20)