FreeBSD: packet coalescing
[exim.git] / src / src / exim.h
index f27ed5cd8519ccbcb86e3868772767ab67c45f78..bb8e4f6e24f8d7b3df4d0fc652c182f40f96357c 100644 (file)
@@ -606,5 +606,13 @@ default to EDQUOT if it exists, otherwise ENOSPC. */
 # define EXIM_GROUPLIST_SIZE NGROUPS_MAX
 #endif
 
+/* Linux has TCP_CORK, FreeBSD has TCP_NOPUSH; they do pretty much the same */
+
+#ifdef TCP_CORK
+# define EXIM_TCP_CORK TCP_CORK
+#elif defined(TCP_NOPUSH)
+# define EXIM_TCP_CORK TCP_NOPUSH
+#endif
+
 #endif
 /* End of exim.h */