diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-10-22 22:40:39 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-10-22 23:06:30 +0100 |
commit | 18f1b2f3f8829931ac096942ff2d1ef85ab5f891 (patch) | |
tree | 11d8822ec123f40c74ae2db54fd6b225e9ca6c5f /src/OS/os.h-Linux | |
parent | f175bef138f45415b9559ee47c7be342ecb95ae0 (diff) |
TFO: Support compilation on systems which define TCP_FASTOPEN but not MSG_FASTOPEN
RHEL 7.0 does that, oddly
Diffstat (limited to 'src/OS/os.h-Linux')
-rw-r--r-- | src/OS/os.h-Linux | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/OS/os.h-Linux b/src/OS/os.h-Linux index 6400e798e..510865c66 100644 --- a/src/OS/os.h-Linux +++ b/src/OS/os.h-Linux @@ -69,5 +69,9 @@ then change the 0 to 1 in the next block. */ # define EXIM_HAVE_OPENAT #endif +#if defined(TCP_FASTOPEN) && !defined(MSG_FASTOPEN) +# define MSG_FASTOPEN 0x20000000 +#endif + /* End */ |