Commit eafb8490 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent f636c653
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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