From: Michael Tremer Date: Mon, 22 Feb 2021 19:22:18 +0000 (+0000) Subject: client: Remove default timeout X-Git-Tag: 0.2.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2c587e9b51829ff63b8599237da732baa00ff7d;p=fireperf.git client: Remove default timeout Signed-off-by: Michael Tremer --- 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)