public class org.eclipse.jetty.io.ssl.SslConnection extends org.eclipse.jetty.io.AbstractConnection implements org.eclipse.jetty.io.Connection$UpgradeTo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.io.ssl.SslConnection
  super_class: org.eclipse.jetty.io.AbstractConnection
{
  private static final org.eclipse.jetty.util.log.Logger LOG;
    descriptor: Lorg/eclipse/jetty/util/log/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String TLS_1_3;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "TLSv1.3"

  private final java.util.List<org.eclipse.jetty.io.ssl.SslHandshakeListener> handshakeListeners;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/eclipse/jetty/io/ssl/SslHandshakeListener;>;

  private final org.eclipse.jetty.io.ByteBufferPool _bufferPool;
    descriptor: Lorg/eclipse/jetty/io/ByteBufferPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final javax.net.ssl.SSLEngine _sslEngine;
    descriptor: Ljavax/net/ssl/SSLEngine;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint _decryptedEndPoint;
    descriptor: Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.nio.ByteBuffer _decryptedInput;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.ByteBuffer _encryptedInput;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.ByteBuffer _encryptedOutput;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private final boolean _encryptedDirectBuffers;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean _decryptedDirectBuffers;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean _renegotiationAllowed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int _renegotiationLimit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean _closedOutbound;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean _allowMissingCloseMessage;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jetty.io.ssl.SslConnection$FlushState _flushState;
    descriptor: Lorg/eclipse/jetty/io/ssl/SslConnection$FlushState;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jetty.io.ssl.SslConnection$FillState _fillState;
    descriptor: Lorg/eclipse/jetty/io/ssl/SslConnection$FillState;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.AtomicReference<org.eclipse.jetty.io.ssl.SslConnection$Handshake> _handshake;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lorg/eclipse/jetty/io/ssl/SslConnection$Handshake;>;

  private boolean _underflown;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.lang.Runnable _runFillable;
    descriptor: Ljava/lang/Runnable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jetty.util.Callback _sslReadCallback;
    descriptor: Lorg/eclipse/jetty/util/Callback;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 80
            ldc Lorg/eclipse/jetty/io/ssl/SslConnection;
            invokestatic org.eclipse.jetty.util.log.Log.getLogger:(Ljava/lang/Class;)Lorg/eclipse/jetty/util/log/Logger;
            putstatic org.eclipse.jetty.io.ssl.SslConnection.LOG:Lorg/eclipse/jetty/util/log/Logger;
         1: .line 81
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.eclipse.jetty.io.ByteBufferPool, java.util.concurrent.Executor, org.eclipse.jetty.io.EndPoint, javax.net.ssl.SSLEngine);
    descriptor: (Lorg/eclipse/jetty/io/ByteBufferPool;Ljava/util/concurrent/Executor;Lorg/eclipse/jetty/io/EndPoint;Ljavax/net/ssl/SSLEngine;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
        start local 2 // java.util.concurrent.Executor executor
        start local 3 // org.eclipse.jetty.io.EndPoint endPoint
        start local 4 // javax.net.ssl.SSLEngine sslEngine
         0: .line 182
            aload 0 /* this */
            aload 1 /* byteBufferPool */
            aload 2 /* executor */
            aload 3 /* endPoint */
            aload 4 /* sslEngine */
            iconst_0
            iconst_0
            invokespecial org.eclipse.jetty.io.ssl.SslConnection.<init>:(Lorg/eclipse/jetty/io/ByteBufferPool;Ljava/util/concurrent/Executor;Lorg/eclipse/jetty/io/EndPoint;Ljavax/net/ssl/SSLEngine;ZZ)V
         1: .line 183
            return
        end local 4 // javax.net.ssl.SSLEngine sslEngine
        end local 3 // org.eclipse.jetty.io.EndPoint endPoint
        end local 2 // java.util.concurrent.Executor executor
        end local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    2     1  byteBufferPool  Lorg/eclipse/jetty/io/ByteBufferPool;
            0    2     2        executor  Ljava/util/concurrent/Executor;
            0    2     3        endPoint  Lorg/eclipse/jetty/io/EndPoint;
            0    2     4       sslEngine  Ljavax/net/ssl/SSLEngine;
    MethodParameters:
                Name  Flags
      byteBufferPool  
      executor        
      endPoint        
      sslEngine       

  public void <init>(org.eclipse.jetty.io.ByteBufferPool, java.util.concurrent.Executor, org.eclipse.jetty.io.EndPoint, javax.net.ssl.SSLEngine, boolean, boolean);
    descriptor: (Lorg/eclipse/jetty/io/ByteBufferPool;Ljava/util/concurrent/Executor;Lorg/eclipse/jetty/io/EndPoint;Ljavax/net/ssl/SSLEngine;ZZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
        start local 2 // java.util.concurrent.Executor executor
        start local 3 // org.eclipse.jetty.io.EndPoint endPoint
        start local 4 // javax.net.ssl.SSLEngine sslEngine
        start local 5 // boolean useDirectBuffersForEncryption
        start local 6 // boolean useDirectBuffersForDecryption
         0: .line 190
            aload 0 /* this */
            aload 3 /* endPoint */
            aload 2 /* executor */
            invokespecial org.eclipse.jetty.io.AbstractConnection.<init>:(Lorg/eclipse/jetty/io/EndPoint;Ljava/util/concurrent/Executor;)V
         1: .line 104
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.io.ssl.SslConnection.handshakeListeners:Ljava/util/List;
         2: .line 114
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.jetty.io.ssl.SslConnection._renegotiationLimit:I
         3: .line 116
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.io.ssl.SslConnection._allowMissingCloseMessage:Z
         4: .line 117
            aload 0 /* this */
            getstatic org.eclipse.jetty.io.ssl.SslConnection$FlushState.IDLE:Lorg/eclipse/jetty/io/ssl/SslConnection$FlushState;
            putfield org.eclipse.jetty.io.ssl.SslConnection._flushState:Lorg/eclipse/jetty/io/ssl/SslConnection$FlushState;
         5: .line 118
            aload 0 /* this */
            getstatic org.eclipse.jetty.io.ssl.SslConnection$FillState.IDLE:Lorg/eclipse/jetty/io/ssl/SslConnection$FillState;
            putfield org.eclipse.jetty.io.ssl.SslConnection._fillState:Lorg/eclipse/jetty/io/ssl/SslConnection$FillState;
         6: .line 119
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            getstatic org.eclipse.jetty.io.ssl.SslConnection$Handshake.INITIAL:Lorg/eclipse/jetty/io/ssl/SslConnection$Handshake;
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield org.eclipse.jetty.io.ssl.SslConnection._handshake:Ljava/util/concurrent/atomic/AtomicReference;
         7: .line 138
            aload 0 /* this */
            new org.eclipse.jetty.io.ssl.SslConnection$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            ldc "runFillable"
            invokespecial org.eclipse.jetty.io.ssl.SslConnection$1.<init>:(Lorg/eclipse/jetty/io/ssl/SslConnection;Lorg/eclipse/jetty/io/ssl/SslConnection;Ljava/lang/String;)V
            putfield org.eclipse.jetty.io.ssl.SslConnection._runFillable:Ljava/lang/Runnable;
         8: .line 153
            aload 0 /* this */
            new org.eclipse.jetty.io.ssl.SslConnection$2
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jetty.io.ssl.SslConnection$2.<init>:(Lorg/eclipse/jetty/io/ssl/SslConnection;)V
            putfield org.eclipse.jetty.io.ssl.SslConnection._sslReadCallback:Lorg/eclipse/jetty/util/Callback;
         9: .line 191
            aload 0 /* this */
            aload 1 /* byteBufferPool */
            putfield org.eclipse.jetty.io.ssl.SslConnection._bufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
        10: .line 192
            aload 0 /* this */
            aload 4 /* sslEngine */
            putfield org.eclipse.jetty.io.ssl.SslConnection._sslEngine:Ljavax/net/ssl/SSLEngine;
        11: .line 193
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.newDecryptedEndPoint:()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            putfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
        12: .line 194
            aload 0 /* this */
            iload 5 /* useDirectBuffersForEncryption */
            putfield org.eclipse.jetty.io.ssl.SslConnection._encryptedDirectBuffers:Z
        13: .line 195
            aload 0 /* this */
            iload 6 /* useDirectBuffersForDecryption */
            putfield org.eclipse.jetty.io.ssl.SslConnection._decryptedDirectBuffers:Z
        14: .line 196
            return
        end local 6 // boolean useDirectBuffersForDecryption
        end local 5 // boolean useDirectBuffersForEncryption
        end local 4 // javax.net.ssl.SSLEngine sslEngine
        end local 3 // org.eclipse.jetty.io.EndPoint endPoint
        end local 2 // java.util.concurrent.Executor executor
        end local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot                           Name  Signature
            0   15     0                           this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0   15     1                 byteBufferPool  Lorg/eclipse/jetty/io/ByteBufferPool;
            0   15     2                       executor  Ljava/util/concurrent/Executor;
            0   15     3                       endPoint  Lorg/eclipse/jetty/io/EndPoint;
            0   15     4                      sslEngine  Ljavax/net/ssl/SSLEngine;
            0   15     5  useDirectBuffersForEncryption  Z
            0   15     6  useDirectBuffersForDecryption  Z
    MethodParameters:
                               Name  Flags
      byteBufferPool                 
      executor                       
      endPoint                       
      sslEngine                      
      useDirectBuffersForEncryption  
      useDirectBuffersForDecryption  

  public void addHandshakeListener(org.eclipse.jetty.io.ssl.SslHandshakeListener);
    descriptor: (Lorg/eclipse/jetty/io/ssl/SslHandshakeListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // org.eclipse.jetty.io.ssl.SslHandshakeListener listener
         0: .line 200
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection.handshakeListeners:Ljava/util/List;
            aload 1 /* listener */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 201
            return
        end local 1 // org.eclipse.jetty.io.ssl.SslHandshakeListener listener
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    2     1  listener  Lorg/eclipse/jetty/io/ssl/SslHandshakeListener;
    MethodParameters:
          Name  Flags
      listener  

  public boolean removeHandshakeListener(org.eclipse.jetty.io.ssl.SslHandshakeListener);
    descriptor: (Lorg/eclipse/jetty/io/ssl/SslHandshakeListener;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // org.eclipse.jetty.io.ssl.SslHandshakeListener listener
         0: .line 205
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection.handshakeListeners:Ljava/util/List;
            aload 1 /* listener */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // org.eclipse.jetty.io.ssl.SslHandshakeListener listener
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    1     1  listener  Lorg/eclipse/jetty/io/ssl/SslHandshakeListener;
    MethodParameters:
          Name  Flags
      listener  

  protected org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint newDecryptedEndPoint();
    descriptor: ()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 210
            new org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.<init>:(Lorg/eclipse/jetty/io/ssl/SslConnection;)V
            areturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public javax.net.ssl.SSLEngine getSSLEngine();
    descriptor: ()Ljavax/net/ssl/SSLEngine;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 215
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._sslEngine:Ljavax/net/ssl/SSLEngine;
            areturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint getDecryptedEndPoint();
    descriptor: ()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 220
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            areturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public boolean isRenegotiationAllowed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 225
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._renegotiationAllowed:Z
            ireturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void setRenegotiationAllowed(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // boolean renegotiationAllowed
         0: .line 230
            aload 0 /* this */
            iload 1 /* renegotiationAllowed */
            putfield org.eclipse.jetty.io.ssl.SslConnection._renegotiationAllowed:Z
         1: .line 231
            return
        end local 1 // boolean renegotiationAllowed
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    2     1  renegotiationAllowed  Z
    MethodParameters:
                      Name  Flags
      renegotiationAllowed  

  public int getRenegotiationLimit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 239
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._renegotiationLimit:I
            ireturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void setRenegotiationLimit(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // int renegotiationLimit
         0: .line 249
            aload 0 /* this */
            iload 1 /* renegotiationLimit */
            putfield org.eclipse.jetty.io.ssl.SslConnection._renegotiationLimit:I
         1: .line 250
            return
        end local 1 // int renegotiationLimit
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    2     1  renegotiationLimit  I
    MethodParameters:
                    Name  Flags
      renegotiationLimit  

  public boolean isAllowMissingCloseMessage();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 254
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._allowMissingCloseMessage:Z
            ireturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void setAllowMissingCloseMessage(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // boolean allowMissingCloseMessage
         0: .line 259
            aload 0 /* this */
            iload 1 /* allowMissingCloseMessage */
            putfield org.eclipse.jetty.io.ssl.SslConnection._allowMissingCloseMessage:Z
         1: .line 260
            return
        end local 1 // boolean allowMissingCloseMessage
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    2     0                      this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    2     1  allowMissingCloseMessage  Z
    MethodParameters:
                          Name  Flags
      allowMissingCloseMessage  

  private void acquireEncryptedInput();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 264
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedInput:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 265
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._bufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._sslEngine:Ljavax/net/ssl/SSLEngine;
            invokevirtual javax.net.ssl.SSLEngine.getSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPacketBufferSize:()I
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedDirectBuffers:Z
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.acquire:(IZ)Ljava/nio/ByteBuffer;
            putfield org.eclipse.jetty.io.ssl.SslConnection._encryptedInput:Ljava/nio/ByteBuffer;
         2: .line 266
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void onUpgradeTo(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 271
            aload 1 /* buffer */
            invokestatic org.eclipse.jetty.util.BufferUtil.hasContent:(Ljava/nio/ByteBuffer;)Z
            ifeq 3
         1: .line 273
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.acquireEncryptedInput:()V
         2: .line 274
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedInput:Ljava/nio/ByteBuffer;
            aload 1 /* buffer */
            invokestatic org.eclipse.jetty.util.BufferUtil.append:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            pop
         3: .line 276
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    4     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  

  public void onOpen();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 281
            aload 0 /* this */
            invokespecial org.eclipse.jetty.io.AbstractConnection.onOpen:()V
         1: .line 282
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.getDecryptedEndPoint:()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.getConnection:()Lorg/eclipse/jetty/io/Connection;
            invokeinterface org.eclipse.jetty.io.Connection.onOpen:()V
         2: .line 283
            return
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void onClose(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // java.lang.Throwable cause
         0: .line 288
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.getConnection:()Lorg/eclipse/jetty/io/Connection;
            aload 1 /* cause */
            invokeinterface org.eclipse.jetty.io.Connection.onClose:(Ljava/lang/Throwable;)V
         1: .line 289
            aload 0 /* this */
            aload 1 /* cause */
            invokespecial org.eclipse.jetty.io.AbstractConnection.onClose:(Ljava/lang/Throwable;)V
         2: .line 290
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    3     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 295
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.getDecryptedEndPoint:()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.getConnection:()Lorg/eclipse/jetty/io/Connection;
            invokeinterface org.eclipse.jetty.io.Connection.close:()V
         1: .line 296
            return
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public boolean onIdleExpired();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 301
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.getDecryptedEndPoint:()Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.getConnection:()Lorg/eclipse/jetty/io/Connection;
            invokeinterface org.eclipse.jetty.io.Connection.onIdleExpired:()Z
            ireturn
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void onFillable();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 313
            getstatic org.eclipse.jetty.io.ssl.SslConnection.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 314
            getstatic org.eclipse.jetty.io.ssl.SslConnection.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc ">c.onFillable {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.isInputShutdown:()Z
            ifeq 4
         3: .line 318
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.close:()V
         4: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable:()V
         5: .line 322
            getstatic org.eclipse.jetty.io.ssl.SslConnection.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 7
         6: .line 323
            getstatic org.eclipse.jetty.io.ssl.SslConnection.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "<c.onFillable {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 324
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  public void onFillInterestedFailed(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
        start local 1 // java.lang.Throwable cause
         0: .line 329
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            aload 1 /* cause */
            ifnonnull 1
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            goto 2
      StackMap locals:
      StackMap stack: org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint
         1: aload 1 /* cause */
      StackMap locals: org.eclipse.jetty.io.ssl.SslConnection java.lang.Throwable
      StackMap stack: org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint java.lang.Throwable
         2: invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillableFail:(Ljava/lang/Throwable;)V
         3: .line 330
            return
        end local 1 // java.lang.Throwable cause
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            0    4     1  cause  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      cause  

  public java.lang.String toConnectionString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 335
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedInput:Ljava/nio/ByteBuffer;
            astore 1 /* b */
        start local 1 // java.nio.ByteBuffer b
         1: .line 336
            aload 1 /* b */
            ifnonnull 2
            iconst_m1
            goto 3
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
         2: aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.remaining:()I
      StackMap locals:
      StackMap stack: int
         3: istore 2 /* ei */
        start local 2 // int ei
         4: .line 337
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedOutput:Ljava/nio/ByteBuffer;
            astore 1 /* b */
         5: .line 338
            aload 1 /* b */
            ifnonnull 6
            iconst_m1
            goto 7
      StackMap locals: int
      StackMap stack:
         6: aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.remaining:()I
      StackMap locals:
      StackMap stack: int
         7: istore 3 /* eo */
        start local 3 // int eo
         8: .line 339
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedInput:Ljava/nio/ByteBuffer;
            astore 1 /* b */
         9: .line 340
            aload 1 /* b */
            ifnonnull 10
            iconst_m1
            goto 11
      StackMap locals: int
      StackMap stack:
        10: aload 1 /* b */
            invokevirtual java.nio.ByteBuffer.remaining:()I
      StackMap locals:
      StackMap stack: int
        11: istore 4 /* di */
        start local 4 // int di
        12: .line 342
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.getConnection:()Lorg/eclipse/jetty/io/Connection;
            astore 5 /* connection */
        start local 5 // org.eclipse.jetty.io.Connection connection
        13: .line 343
            ldc "%s@%x{%s,eio=%d/%d,di=%d,fill=%s,flush=%s}~>%s=>%s"
            bipush 10
            anewarray java.lang.Object
            dup
            iconst_0
        14: .line 344
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
        15: .line 345
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
        16: .line 346
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._sslEngine:Ljavax/net/ssl/SSLEngine;
            invokevirtual javax.net.ssl.SSLEngine.getHandshakeStatus:()Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;
            aastore
            dup
            iconst_3
        17: .line 347
            iload 2 /* ei */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_4
            iload 3 /* eo */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_5
            iload 4 /* di */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            bipush 6
        18: .line 348
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._fillState:Lorg/eclipse/jetty/io/ssl/SslConnection$FillState;
            aastore
            dup
            bipush 7
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._flushState:Lorg/eclipse/jetty/io/ssl/SslConnection$FlushState;
            aastore
            dup
            bipush 8
        19: .line 349
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.toEndPointString:()Ljava/lang/String;
            aastore
            dup
            bipush 9
        20: .line 350
            aload 5 /* connection */
            instanceof org.eclipse.jetty.io.AbstractConnection
            ifeq 21
            aload 5 /* connection */
            checkcast org.eclipse.jetty.io.AbstractConnection
            invokevirtual org.eclipse.jetty.io.AbstractConnection.toConnectionString:()Ljava/lang/String;
            goto 22
      StackMap locals: org.eclipse.jetty.io.ssl.SslConnection java.nio.ByteBuffer int int int org.eclipse.jetty.io.Connection
      StackMap stack: java.lang.String java.lang.Object[] java.lang.Object[] int
        21: aload 5 /* connection */
      StackMap locals: org.eclipse.jetty.io.ssl.SslConnection java.nio.ByteBuffer int int int org.eclipse.jetty.io.Connection
      StackMap stack: java.lang.String java.lang.Object[] java.lang.Object[] int java.lang.Object
        22: aastore
        23: .line 343
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 5 // org.eclipse.jetty.io.Connection connection
        end local 4 // int di
        end local 3 // int eo
        end local 2 // int ei
        end local 1 // java.nio.ByteBuffer b
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/jetty/io/ssl/SslConnection;
            1   24     1           b  Ljava/nio/ByteBuffer;
            4   24     2          ei  I
            8   24     3          eo  I
           12   24     4          di  I
           13   24     5  connection  Lorg/eclipse/jetty/io/Connection;

  private void releaseEncryptedOutputBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ssl.SslConnection this
         0: .line 355
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._decryptedEndPoint:Lorg/eclipse/jetty/io/ssl/SslConnection$DecryptedEndPoint;
            invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 356
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedOutput:Ljava/nio/ByteBuffer;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedOutput:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 5
         3: .line 359
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._bufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ssl.SslConnection._encryptedOutput:Ljava/nio/ByteBuffer;
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.release:(Ljava/nio/ByteBuffer;)V
         4: .line 360
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.io.ssl.SslConnection._encryptedOutput:Ljava/nio/ByteBuffer;
         5: .line 362
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.io.ssl.SslConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jetty/io/ssl/SslConnection;

  static java.util.concurrent.Executor access$0(org.eclipse.jetty.io.ssl.SslConnection);
    descriptor: (Lorg/eclipse/jetty/io/ssl/SslConnection;)Ljava/util/concurrent/Executor;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.jetty.io.ssl.SslConnection.getExecutor:()Ljava/util/concurrent/Executor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "SslConnection.java"
NestMembers:
  org.eclipse.jetty.io.ssl.SslConnection$1  org.eclipse.jetty.io.ssl.SslConnection$2  org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint  org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint$IncompleteWriteCallback  org.eclipse.jetty.io.ssl.SslConnection$FillState  org.eclipse.jetty.io.ssl.SslConnection$FlushState  org.eclipse.jetty.io.ssl.SslConnection$Handshake  org.eclipse.jetty.io.ssl.SslConnection$RunnableTask
InnerClasses:
  public final HandshakeStatus = javax.net.ssl.SSLEngineResult$HandshakeStatus of javax.net.ssl.SSLEngineResult
  public abstract UpgradeTo = org.eclipse.jetty.io.Connection$UpgradeTo of org.eclipse.jetty.io.Connection
  org.eclipse.jetty.io.ssl.SslConnection$1
  org.eclipse.jetty.io.ssl.SslConnection$2
  public DecryptedEndPoint = org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint of org.eclipse.jetty.io.ssl.SslConnection
  private final FillState = org.eclipse.jetty.io.ssl.SslConnection$FillState of org.eclipse.jetty.io.ssl.SslConnection
  private final FlushState = org.eclipse.jetty.io.ssl.SslConnection$FlushState of org.eclipse.jetty.io.ssl.SslConnection
  private final Handshake = org.eclipse.jetty.io.ssl.SslConnection$Handshake of org.eclipse.jetty.io.ssl.SslConnection
  private abstract RunnableTask = org.eclipse.jetty.io.ssl.SslConnection$RunnableTask of org.eclipse.jetty.io.ssl.SslConnection