mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 20:39:18 +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
|
||||
{
|
||||
_certs = getSslSessionData().getCerts();
|
||||
SslSessionData sslSessionData = getSslSessionData();
|
||||
_certs = sslSessionData.getCerts();
|
||||
_cipherSuite = _session.getCipherSuite();
|
||||
_keySize = getSslSessionData().getKeySize();
|
||||
_sessionId = getSslSessionData().getIdStr();
|
||||
_keySize = sslSessionData.getKeySize();
|
||||
_sessionId = sslSessionData.getIdStr();
|
||||
_sessionAttribute = getSslSessionAttribute();
|
||||
}
|
||||
catch (Exception e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user