1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_ssl: update the current handshake server once a full regenegotation

succeeds, it is the new reference for further renegotiation or SNI check.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1703871 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2015-09-18 14:31:48 +00:00
parent 0ae671360d
commit 357b2a9973

View File

@@ -850,6 +850,11 @@ int ssl_hook_Access(request_rec *r)
r->connection->keepalive = AP_CONN_CLOSE; r->connection->keepalive = AP_CONN_CLOSE;
return HTTP_FORBIDDEN; return HTTP_FORBIDDEN;
} }
/* Full renegotiation successfull, we now have handshaken with
* this server's parameters.
*/
sslconn->server = r->server;
} }
/* /*