summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2016-10-23 17:57:43 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2016-10-23 18:31:36 +0100
commit1a2dfad52a761f9b3ea139e68df37a3739c7da8a (patch)
tree939157943c82a265f2da855f9f3f872b68742c85 /src
parentef8176594c130feebefad040420fbc4d637e9571 (diff)
TFO: feature advertisementexim-4_88_RC3
Diffstat (limited to 'src')
-rw-r--r--src/src/exim.c3
-rw-r--r--src/src/readconf.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/src/exim.c b/src/src/exim.c
index b1fff4ddf..e63997030 100644
--- a/src/src/exim.c
+++ b/src/src/exim.c
@@ -840,6 +840,9 @@ fprintf(f, "Support for:");
#ifdef SUPPORT_SOCKS
fprintf(f, " SOCKS");
#endif
+#ifdef TCP_FASTOPEN
+ fprintf(f, " TCP_Fast_Open");
+#endif
#ifdef EXPERIMENTAL_LMDB
fprintf(f, " Experimental_LMDB");
#endif
diff --git a/src/src/readconf.c b/src/src/readconf.c
index a23a57ce8..f53a5d27a 100644
--- a/src/src/readconf.c
+++ b/src/src/readconf.c
@@ -762,6 +762,9 @@ due to conflicts with other common macros. */
#ifdef SUPPORT_SOCKS
macro_create(US"_HAVE_SOCKS", US"y", FALSE, TRUE);
#endif
+#ifdef TCP_FASTOPEN
+ macro_create(US"_HAVE_TCP_FASTOPEN", US"y", FALSE, TRUE);
+#endif
#ifdef EXPERIMENTAL_LMDB
macro_create(US"_HAVE_LMDB", US"y", FALSE, TRUE);
#endif