From ae1f2dfa7da78d8eb60111c04af4076435665c2a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 5 Apr 2001 19:04:14 +0000 Subject: [PATCH] Now that APR knows when TCP_NODELAY is inherited, use its setting to know when to set that option on the listening socket. (not that I understand to start with why we bother saving this minimal pathlength when it isn't inherited) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88733 13f79535-47bb-0310-9956-ffa450edef68 --- server/listen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/listen.c b/server/listen.c index c3926c1aef6..a525de09ba3 100644 --- a/server/listen.c +++ b/server/listen.c @@ -137,7 +137,7 @@ static apr_status_t make_sock(apr_pool_t *p, ap_listen_rec *server) } } -#if DISABLE_NAGLE_INHERITED +#if APR_TCP_NODELAY_INHERITED ap_sock_disable_nagle(s); #endif -- 2.47.2