From d67b72a0f220b5a41496498914c8e28733ced8a1 Mon Sep 17 00:00:00 2001 From: James Peach Date: Sun, 15 Jan 2006 23:13:47 +0000 Subject: r12953: Support the TCP_FASTACK socket option if it is available. Note that this will not acutally help, but it is good to be complete. (This used to be commit 2163e4b6b453ebf1fefc64e74890300108bbf8f6) --- source3/lib/util_sock.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 6562dae952..91c3305996 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -180,6 +180,9 @@ static const smb_socket_option socket_options[] = { #endif #ifdef SO_RCVTIMEO {"SO_RCVTIMEO", SOL_SOCKET, SO_RCVTIMEO, 0, OPT_INT}, +#endif +#ifdef TCP_FASTACK + {"TCP_FASTACK", IPPROTO_TCP, TCP_FASTACK, 0, OPT_INT}, #endif {NULL,0,0,0,0}}; -- cgit