You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Dean Gaudet <dg...@arctic.org> on 1997/06/10 02:42:35 UTC

Re: cvs commit: apache/htdocs/manual/mod core.html

On Mon, 9 Jun 1997, Marc Slemko wrote:
>   Note that allowing this to be set on a per socket (ie. per Listen
>   directive) basis could be useful for some, but isn't currently
>   implemented.  Also note that the code as written may fail to work
>   correctly on some systems that don't copy the socket settings fully
>   on an accept().

Actually I looked into this a few months back when I learned that nagle
isn't copied across the accept() (because it is IPPROTO_TCP).  SO_SNDBUF
is *supposed* to be copied because it is SOL_SOCKET.  Not that helps
reality any.

Dean