Merged branch 'jetty-9.4.x' into 'jetty-10.0.x'.

This commit is contained in:
Simone Bordet 2020-11-17 13:41:45 +01:00
commit a3a153d08d

View File

@ -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)