From 036bad61317bc71f59db0e766881dd880253bb52 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Tue, 14 Jul 2009 22:23:39 +0200 Subject: [PATCH 1/1] s3: allow setting the TCP_QUICKACK socket option --- 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 31261afd729..af64f370baf 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -348,6 +348,9 @@ static const smb_socket_option socket_options[] = { #endif #ifdef TCP_FASTACK {"TCP_FASTACK", IPPROTO_TCP, TCP_FASTACK, 0, OPT_INT}, +#endif +#ifdef TCP_QUICKACK + {"TCP_QUICKACK", IPPROTO_TCP, TCP_QUICKACK, 0, OPT_BOOL}, #endif {NULL,0,0,0,0}}; -- 2.34.1