src/java.base/share/classes/sun/security/ssl/HandshakeContext.java
changeset 55336 c2398053ee90
parent 53852 25002c4f0145
child 55353 946f7f2d321c
equal deleted inserted replaced
55335:f7cc25dda38a 55336:c2398053ee90
   100     boolean                                 kickstartMessageDelivered;
   100     boolean                                 kickstartMessageDelivered;
   101 
   101 
   102     // Resumption
   102     // Resumption
   103     boolean                                 isResumption;
   103     boolean                                 isResumption;
   104     SSLSessionImpl                          resumingSession;
   104     SSLSessionImpl                          resumingSession;
       
   105     // Session is using stateless resumption
       
   106     boolean                                 statelessResumption = false;
   105 
   107 
   106     final Queue<Map.Entry<Byte, ByteBuffer>> delegatedActions;
   108     final Queue<Map.Entry<Byte, ByteBuffer>> delegatedActions;
   107     volatile boolean                        taskDelegated = false;
   109     volatile boolean                        taskDelegated = false;
   108     volatile Exception                      delegatedThrown = null;
   110     volatile Exception                      delegatedThrown = null;
   109 
   111 
   549         return false;
   551         return false;
   550     }
   552     }
   551 
   553 
   552     List<SNIServerName> getRequestedServerNames() {
   554     List<SNIServerName> getRequestedServerNames() {
   553         if (requestedServerNames == null) {
   555         if (requestedServerNames == null) {
   554             return Collections.<SNIServerName>emptyList();
   556             return Collections.emptyList();
   555         }
   557         }
   556         return requestedServerNames;
   558         return requestedServerNames;
   557     }
   559     }
   558 }
   560 }
   559 
   561