From a2c587e9b51829ff63b8599237da732baa00ff7d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 22 Feb 2021 19:22:18 +0000 Subject: [PATCH] client: Remove default timeout Signed-off-by: Michael Tremer --- src/main.c | 1 - src/main.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/main.c b/src/main.c index 84e40a7..532a168 100644 --- a/src/main.c +++ b/src/main.c @@ -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; diff --git a/src/main.h b/src/main.h index 738516f..890860e 100644 --- a/src/main.h +++ b/src/main.h @@ -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) -- 2.47.2