8228396: Re-enable Stateless Resumption On by default for merge to mainline
Reviewed-by: jnimeh
This commit is contained in:
parent
f73a94a772
commit
81db7083a7
@ -70,7 +70,7 @@ final class SSLSessionContextImpl implements SSLSessionContext {
|
|||||||
private int timeout; // timeout in seconds
|
private int timeout; // timeout in seconds
|
||||||
|
|
||||||
// Default setting for stateless session resumption support (RFC 5077)
|
// Default setting for stateless session resumption support (RFC 5077)
|
||||||
private boolean statelessSession = false;
|
private boolean statelessSession = true;
|
||||||
|
|
||||||
// package private
|
// package private
|
||||||
SSLSessionContextImpl(boolean server) {
|
SSLSessionContextImpl(boolean server) {
|
||||||
@ -234,13 +234,15 @@ final class SSLSessionContextImpl implements SSLSessionContext {
|
|||||||
// Property for Session Cache state
|
// Property for Session Cache state
|
||||||
if (server) {
|
if (server) {
|
||||||
st = GetPropertyAction.privilegedGetProperty(
|
st = GetPropertyAction.privilegedGetProperty(
|
||||||
"jdk.tls.server.enableSessionTicketExtension", "false");
|
"jdk.tls.server.enableSessionTicketExtension", "true");
|
||||||
} else {
|
} else {
|
||||||
st = GetPropertyAction.privilegedGetProperty(
|
st = GetPropertyAction.privilegedGetProperty(
|
||||||
"jdk.tls.client.enableSessionTicketExtension", "false");
|
"jdk.tls.client.enableSessionTicketExtension", "true");
|
||||||
}
|
}
|
||||||
|
|
||||||
statelessSession = Boolean.parseBoolean(st);
|
if (st.compareToIgnoreCase("false") == 0) {
|
||||||
|
statelessSession = false;
|
||||||
|
}
|
||||||
|
|
||||||
// Property for Session Ticket Timeout. The value can be changed
|
// Property for Session Ticket Timeout. The value can be changed
|
||||||
// by SSLSessionContext.setSessionTimeout(int)
|
// by SSLSessionContext.setSessionTimeout(int)
|
||||||
|
Loading…
Reference in New Issue
Block a user