From d8caab699d1e1974c6a0b5a765750f1b7c3200fc Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 2 Mar 2021 13:14:50 +0100 Subject: [PATCH] Add missing headers for TCP_CORK We didn't include the proper headers to get the correct define, so corking was never enabled. --- common/rdr/FdOutStream.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/rdr/FdOutStream.cxx b/common/rdr/FdOutStream.cxx index d7da710..c4ca03f 100644 --- a/common/rdr/FdOutStream.cxx +++ b/common/rdr/FdOutStream.cxx @@ -35,6 +35,8 @@ #include #include #include +#include +#include #endif /* Old systems have select() in sys/time.h */