mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-04 04:49:12 +00:00
Merged branch 'jetty-9.4.x' into 'jetty-10.0.x'.
This commit is contained in:
commit
a3a153d08d
@ -338,10 +338,11 @@ public class SecureRequestCustomizer implements HttpConfiguration.Customizer
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_certs = getSslSessionData().getCerts();
|
SslSessionData sslSessionData = getSslSessionData();
|
||||||
|
_certs = sslSessionData.getCerts();
|
||||||
_cipherSuite = _session.getCipherSuite();
|
_cipherSuite = _session.getCipherSuite();
|
||||||
_keySize = getSslSessionData().getKeySize();
|
_keySize = sslSessionData.getKeySize();
|
||||||
_sessionId = getSslSessionData().getIdStr();
|
_sessionId = sslSessionData.getIdStr();
|
||||||
_sessionAttribute = getSslSessionAttribute();
|
_sessionAttribute = getSslSessionAttribute();
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user