jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
child 28543 31afdc0e77af
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
   142      *               ERROR>------>----->CLOSED<--------<----+-- +
   142      *               ERROR>------>----->CLOSED<--------<----+-- +
   143      *                                     |
   143      *                                     |
   144      *                                     v
   144      *                                     v
   145      *                                 APP_CLOSED
   145      *                                 APP_CLOSED
   146      *
   146      *
   147      * ALSO, note that the the purpose of handshaking (renegotiation is
   147      * ALSO, note that the purpose of handshaking (renegotiation is
   148      * included) is to assign a different, and perhaps new, session to
   148      * included) is to assign a different, and perhaps new, session to
   149      * the connection.  The SSLv3 spec is a bit confusing on that new
   149      * the connection.  The SSLv3 spec is a bit confusing on that new
   150      * protocol feature.
   150      * protocol feature.
   151      */
   151      */
   152     private static final int    cs_START = 0;
   152     private static final int    cs_START = 0;
  2188 
  2188 
  2189         return output;
  2189         return output;
  2190     }
  2190     }
  2191 
  2191 
  2192     /**
  2192     /**
  2193      * Returns the the SSL Session in use by this connection.  These can
  2193      * Returns the SSL Session in use by this connection.  These can
  2194      * be long lived, and frequently correspond to an entire login session
  2194      * be long lived, and frequently correspond to an entire login session
  2195      * for some user.
  2195      * for some user.
  2196      */
  2196      */
  2197     @Override
  2197     @Override
  2198     public SSLSession getSession() {
  2198     public SSLSession getSession() {