in this case *we* decide to close the connection so use
r->connection->keepalive = AP_CONN_CLOSE
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@768500
13f79535-47bb-0310-9956-
ffa450edef68
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
"Re-negotiation request failed");
- r->connection->aborted = 1;
+ r->connection->keepalive = AP_CONN_CLOSE;
return HTTP_FORBIDDEN;
}
"Re-negotiation handshake failed: "
"Not accepted by client!?");
- r->connection->aborted = 1;
+ r->connection->keepalive = AP_CONN_CLOSE;
return HTTP_FORBIDDEN;
}
}