mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8227551: Session Resumption without Server-Side State off by default
Reviewed-by: xuelei, jnimeh, jjiang
This commit is contained in:
parent
6f3bb94427
commit
bc7a8842a3
2 changed files with 17 additions and 7 deletions
|
@ -69,8 +69,8 @@ final class SSLSessionContextImpl implements SSLSessionContext {
|
|||
private int cacheLimit; // the max cache size
|
||||
private int timeout; // timeout in seconds
|
||||
|
||||
// Does this context support stateless session (RFC 5077)
|
||||
private boolean statelessSession = true;
|
||||
// Default setting for stateless session resumption support (RFC 5077)
|
||||
private boolean statelessSession = false;
|
||||
|
||||
// package private
|
||||
SSLSessionContextImpl(boolean server) {
|
||||
|
@ -234,15 +234,14 @@ final class SSLSessionContextImpl implements SSLSessionContext {
|
|||
// Property for Session Cache state
|
||||
if (server) {
|
||||
st = GetPropertyAction.privilegedGetProperty(
|
||||
"jdk.tls.server.enableSessionTicketExtension", "true");
|
||||
"jdk.tls.server.enableSessionTicketExtension", "false");
|
||||
} else {
|
||||
st = GetPropertyAction.privilegedGetProperty(
|
||||
"jdk.tls.client.enableSessionTicketExtension", "true");
|
||||
}
|
||||
if (st.compareToIgnoreCase("false") == 0) {
|
||||
statelessSession = false;
|
||||
"jdk.tls.client.enableSessionTicketExtension", "false");
|
||||
}
|
||||
|
||||
statelessSession = Boolean.parseBoolean(st);
|
||||
|
||||
// Property for Session Ticket Timeout. The value can be changed
|
||||
// by SSLSessionContext.setSessionTimeout(int)
|
||||
String s = GetPropertyAction.privilegedGetProperty(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue