From: Jeremy Harris Date: Tue, 19 Sep 2017 12:24:43 +0000 (+0100) Subject: Fix testsuite build for non-TFO platforms X-Git-Tag: exim-4_90_RC1~62 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/4043ef1cec143692ca271bf868abf01d62b0d0d1 Fix testsuite build for non-TFO platforms --- diff --git a/test/src/server.c b/test/src/server.c index 4656b02af..5af86d96f 100644 --- a/test/src/server.c +++ b/test/src/server.c @@ -298,7 +298,7 @@ else printf("IPv6 socket creation failed: %s\n", strerror(errno)); exit(1); } - +#ifdef TCP_FASTOPEN if (tfo) { int backlog = 5; @@ -306,7 +306,7 @@ else &backlog, sizeof(backlog))) if (debug) printf("setsockopt TCP_FASTOPEN: %s\n", strerror(errno)); } - +#endif /* If this is an IPv6 wildcard socket, set IPV6_V6ONLY if that option is available. */ @@ -330,6 +330,7 @@ else printf("IPv4 socket creation failed: %s\n", strerror(errno)); exit(1); } +#ifdef TCP_FASTOPEN if (tfo) { int backlog = 5; @@ -337,7 +338,7 @@ else &backlog, sizeof(backlog))) if (debug) printf("setsockopt TCP_FASTOPEN: %s\n", strerror(errno)); } - +#endif } }