> @@ -260,6 +261,12 @@
> */
> APR_BRIGADE_INSERT_HEAD(bb, e);
> ap_pass_brigade(r->connection->output_filters, bb);
> + if (rv != APR_SUCCESS) {
> + /* We got an error earlier reading from the socket. Make sure
> + * keepalive is off so that we don't try to read another request.
> + */
> + r->connection->keepalive = 0;
> + }
> }
> }
> Should we set r->connection->aborted here? Bill
