On Wednesday 30 July 2003 18.18, Duane Wessels wrote:

>             comm_remove_close_handler(fd, httpStateFree,
> httpState); fwdUnregister(fd, httpState->fwd);
> -           pconnPush(fd, request->host, request->port);
> +           if (request->flags.accelerated &&
> +               Config.Accel.single_host && Config.Accel.host)
> +               pconnPush(fd, Config.Accel.host,
> Config.Accel.port); +           else
> +               pconnPush(fd, request->host, request->port);
>             fwdComplete(httpState->fwd);


Except that this will fail on certain servers when used in combination 
with httpd_accel_uses_host_header... not all servers can accept 
persistent connections across different virtual domains. (why should 
a server accept such a thing... persistent connections are to be 
managed on the domain name, not IP address)

Regards
Henrik

Reply via email to