The following reply was made to PR mod_include/706; it has been noted by GNATS.
From: Dean Gaudet <[EMAIL PROTECTED]> To: "Ben 'The Con Man' Kahn" <[EMAIL PROTECTED]> Subject: Re: mod_include/706: SSI is buffering output. Some scripts are now too slow. Date: Mon, 9 Jun 1997 17:37:06 -0700 (PDT) Unfortunately it's hard to "not buffer" the page ... even 1.1.3 buffered, but it only buffered up to 1024 bytes. 1.2 buffers up to 4096 bytes, and it does that deliberately to avoid sending extra packets on the net. To change that value, edit buff.c and change DEFAULT_BUFFERSIZE from 4096 to something lower... you could probably even use 576 which a typical MTU for serial lines. This affects your entire server, and could degrade performance by generating more packets than strictly necessary. Another alternative is to not use SSI and use CGI completely, using the nph- "hack". But I hate advocating that. Dean
