On 3/1/2010 8:49 AM, Joe Orton wrote:
> I guess we need votes again, for 2.2.x to restore that chunk, vote now:
>
> Index: modules/ssl/ssl_engine_io.c
> ===================================================================
> --- modules/ssl/ssl_engine_io.c (revision 917550)
> +++ modules/ssl/ssl_engine_io.c (working copy)
> @@ -472,6 +472,12 @@
> if (!in)
> return 0;
>
> + /* Abort early if the client has initiated a renegotiation. */
> + if (inctx->filter_ctx->config->reneg_state == RENEG_ABORT) {
> + inctx->rc = APR_ECONNABORTED;
> + return -1;
> + }
> +
+1