diff options
author | Ruediger Pluem <rpluem@apache.org> | 2009-04-25 09:25:24 +0000 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2009-04-25 09:25:24 +0000 |
commit | 06f79508fb8f89eff6849977bc38d91794298897 (patch) | |
tree | 7061710e38527c8fba9302d8c2e1923b5bd71a94 /modules | |
parent | 7f3acaed7df4166f13eada3110afe8d2930b2a2e (diff) | |
download | httpd-06f79508fb8f89eff6849977bc38d91794298897.tar.gz |
* r->connection->aborted signals that the client aborted the connection, but
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
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ssl/ssl_engine_kernel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index 1373365012..e2ab5ff936 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -734,7 +734,7 @@ int ssl_hook_Access(request_rec *r) 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; } @@ -753,7 +753,7 @@ int ssl_hook_Access(request_rec *r) "Re-negotiation handshake failed: " "Not accepted by client!?"); - r->connection->aborted = 1; + r->connection->keepalive = AP_CONN_CLOSE; return HTTP_FORBIDDEN; } } |