X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fip.c;h=2e8968528b62d4087a1590b3b67fb551b5989bb0;hb=e29b631dc8f5694dd5964b40a85086015fdff054;hp=1a2206c9d6e8457e5bd675a940e7bb8fe13b82c6;hpb=ba936fb813cffe5208a0d410cb462ec234eea41b;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/ip.c b/src/src/ip.c index 1a2206c9d..2e8968528 100644 --- a/src/src/ip.c +++ b/src/src/ip.c @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2017 */ +/* Copyright (c) University of Cambridge 1995 - 2018 */ /* See the file NOTICE for conditions of use and distribution. */ /* Functions for doing things with sockets. With the advent of IPv6 this has @@ -171,8 +171,7 @@ tfo_probe(void) int sock, backlog = 5; if ( (sock = socket(SOCK_STREAM, AF_INET, 0)) < 0 - && setsockopt(sock, IPPROTO_TCP, TCP_FASTOPEN, - &connect_backlog, sizeof(smtp_connect_backlog)) + && setsockopt(sock, IPPROTO_TCP, TCP_FASTOPEN, &backlog, sizeof(backlog)) ) tcp_fastopen_ok = TRUE; close(sock);