public abstract class io.netty.handler.ssl.AbstractSniHandler<T> extends io.netty.handler.codec.ByteToMessageDecoder implements io.netty.channel.ChannelOutboundHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.handler.ssl.AbstractSniHandler
  super_class: io.netty.handler.codec.ByteToMessageDecoder
{
  private static final int MAX_SSL_RECORDS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final io.netty.util.internal.logging.InternalLogger logger;
    descriptor: Lio/netty/util/internal/logging/InternalLogger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 49
            ldc Lio/netty/handler/ssl/AbstractSniHandler;
            invokestatic io.netty.util.internal.logging.InternalLoggerFactory.getInstance:(Ljava/lang/Class;)Lio/netty/util/internal/logging/InternalLogger;
         1: .line 48
            putstatic io.netty.handler.ssl.AbstractSniHandler.logger:Lio/netty/util/internal/logging/InternalLogger;
         2: .line 49
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
         0: .line 43
            aload 0 /* this */
            invokespecial io.netty.handler.codec.ByteToMessageDecoder.<init>:()V
            return
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;

  protected void decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=25, args_size=4
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.buffer.ByteBuf in
        start local 3 // java.util.List out
         0: .line 57
            aload 0 /* this */
            getfield io.netty.handler.ssl.AbstractSniHandler.suppressRead:Z
            ifne 86
            aload 0 /* this */
            getfield io.netty.handler.ssl.AbstractSniHandler.handshakeFailed:Z
            ifne 86
         1: .line 58
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            istore 4 /* writerIndex */
        start local 4 // int writerIndex
         2: .line 61
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         3: goto 78
         4: .line 62
      StackMap locals: int int
      StackMap stack:
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            istore 6 /* readerIndex */
        start local 6 // int readerIndex
         5: .line 63
            iload 4 /* writerIndex */
            iload 6 /* readerIndex */
            isub
            istore 7 /* readableBytes */
        start local 7 // int readableBytes
         6: .line 64
            iload 7 /* readableBytes */
            iconst_5
            if_icmpge 8
         7: .line 66
            return
         8: .line 69
      StackMap locals: int int
      StackMap stack:
            aload 2 /* in */
            iload 6 /* readerIndex */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            istore 8 /* command */
        start local 8 // int command
         9: .line 72
            iload 8 /* command */
            tableswitch { // 20 - 22
                   20: 10
                   21: 10
                   22: 25
              default: 76
          }
        10: .line 75
      StackMap locals: int
      StackMap stack:
            aload 2 /* in */
            iload 6 /* readerIndex */
            invokestatic io.netty.handler.ssl.SslUtils.getEncryptedPacketLength:(Lio/netty/buffer/ByteBuf;I)I
            istore 9 /* len */
        start local 9 // int len
        11: .line 78
            iload 9 /* len */
            bipush -2
            if_icmpne 20
        12: .line 79
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.ssl.AbstractSniHandler.handshakeFailed:Z
        13: .line 80
            new io.netty.handler.ssl.NotSslRecordException
            dup
        14: .line 81
            new java.lang.StringBuilder
            dup
            ldc "not an SSL/TLS record: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* in */
            invokestatic io.netty.buffer.ByteBufUtil.hexDump:(Lio/netty/buffer/ByteBuf;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        15: .line 80
            invokespecial io.netty.handler.ssl.NotSslRecordException.<init>:(Ljava/lang/String;)V
            astore 10 /* e */
        start local 10 // io.netty.handler.ssl.NotSslRecordException e
        16: .line 82
            aload 2 /* in */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
        17: .line 83
            aload 1 /* ctx */
            new io.netty.handler.ssl.SniCompletionEvent
            dup
            aload 10 /* e */
            invokespecial io.netty.handler.ssl.SniCompletionEvent.<init>:(Ljava/lang/Throwable;)V
            invokeinterface io.netty.channel.ChannelHandlerContext.fireUserEventTriggered:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
        18: .line 84
            aload 1 /* ctx */
            aload 10 /* e */
            iconst_1
            invokestatic io.netty.handler.ssl.SslUtils.handleHandshakeFailure:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;Z)V
        19: .line 85
            aload 10 /* e */
            athrow
        end local 10 // io.netty.handler.ssl.NotSslRecordException e
        20: .line 87
      StackMap locals: int
      StackMap stack:
            iload 9 /* len */
            iconst_m1
            if_icmpeq 22
        21: .line 88
            iload 4 /* writerIndex */
            iload 6 /* readerIndex */
            isub
            iconst_5
            isub
            iload 9 /* len */
            if_icmpge 23
        22: .line 90
      StackMap locals:
      StackMap stack:
            return
        23: .line 93
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            iload 9 /* len */
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
        24: .line 94
            goto 77
        end local 9 // int len
        25: .line 96
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            iload 6 /* readerIndex */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            istore 10 /* majorVersion */
        start local 10 // int majorVersion
        26: .line 99
            iload 10 /* majorVersion */
            iconst_3
            if_icmpne 85
        27: .line 100
            aload 2 /* in */
            iload 6 /* readerIndex */
            iconst_3
            iadd
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
        28: .line 101
            iconst_5
        29: .line 100
            iadd
            istore 11 /* packetLength */
        start local 11 // int packetLength
        30: .line 103
            iload 7 /* readableBytes */
            iload 11 /* packetLength */
            if_icmpge 32
        31: .line 105
            return
        32: .line 128
      StackMap locals: io.netty.handler.ssl.AbstractSniHandler io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf java.util.List int int int int int top int int
      StackMap stack:
            iload 6 /* readerIndex */
            iload 11 /* packetLength */
            iadd
            istore 12 /* endOffset */
        start local 12 // int endOffset
        33: .line 129
            iload 6 /* readerIndex */
            bipush 43
            iadd
            istore 13 /* offset */
        start local 13 // int offset
        34: .line 131
            iload 12 /* endOffset */
            iload 13 /* offset */
            isub
            bipush 6
            if_icmpge 36
        35: .line 132
            goto 85
        36: .line 135
      StackMap locals: int int
      StackMap stack:
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            istore 14 /* sessionIdLength */
        start local 14 // int sessionIdLength
        37: .line 136
            iload 13 /* offset */
            iload 14 /* sessionIdLength */
            iconst_1
            iadd
            iadd
            istore 13 /* offset */
        38: .line 138
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            istore 15 /* cipherSuitesLength */
        start local 15 // int cipherSuitesLength
        39: .line 139
            iload 13 /* offset */
            iload 15 /* cipherSuitesLength */
            iconst_2
            iadd
            iadd
            istore 13 /* offset */
        40: .line 141
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            istore 16 /* compressionMethodLength */
        start local 16 // int compressionMethodLength
        41: .line 142
            iload 13 /* offset */
            iload 16 /* compressionMethodLength */
            iconst_1
            iadd
            iadd
            istore 13 /* offset */
        42: .line 144
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            istore 17 /* extensionsLength */
        start local 17 // int extensionsLength
        43: .line 145
            iinc 13 /* offset */ 2
        44: .line 146
            iload 13 /* offset */
            iload 17 /* extensionsLength */
            iadd
            istore 18 /* extensionsLimit */
        start local 18 // int extensionsLimit
        45: .line 148
            iload 18 /* extensionsLimit */
            iload 12 /* endOffset */
            if_icmple 47
        46: .line 150
            goto 85
        47: .line 154
      StackMap locals: io.netty.handler.ssl.AbstractSniHandler io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf java.util.List int int int int int top int int int int int int int int int
      StackMap stack:
            iload 18 /* extensionsLimit */
            iload 13 /* offset */
            isub
            iconst_4
            if_icmpge 49
        48: .line 155
            goto 85
        49: .line 158
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            istore 19 /* extensionType */
        start local 19 // int extensionType
        50: .line 159
            iinc 13 /* offset */ 2
        51: .line 161
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            istore 20 /* extensionLength */
        start local 20 // int extensionLength
        52: .line 162
            iinc 13 /* offset */ 2
        53: .line 164
            iload 18 /* extensionsLimit */
            iload 13 /* offset */
            isub
            iload 20 /* extensionLength */
            if_icmpge 55
        54: .line 165
            goto 85
        55: .line 170
      StackMap locals: int int
      StackMap stack:
            iload 19 /* extensionType */
            ifne 74
        56: .line 171
            iinc 13 /* offset */ 2
        57: .line 172
            iload 18 /* extensionsLimit */
            iload 13 /* offset */
            isub
            iconst_3
            if_icmpge 59
        58: .line 173
            goto 85
        59: .line 176
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            istore 21 /* serverNameType */
        start local 21 // int serverNameType
        60: .line 177
            iinc 13 /* offset */ 1
        61: .line 179
            iload 21 /* serverNameType */
            ifne 85
        62: .line 180
            aload 2 /* in */
            iload 13 /* offset */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            istore 22 /* serverNameLength */
        start local 22 // int serverNameLength
        63: .line 181
            iinc 13 /* offset */ 2
        64: .line 183
            iload 18 /* extensionsLimit */
            iload 13 /* offset */
            isub
            iload 22 /* serverNameLength */
            if_icmpge 66
        65: .line 184
            goto 85
        66: .line 187
      StackMap locals: int int
      StackMap stack:
            aload 2 /* in */
            iload 13 /* offset */
            iload 22 /* serverNameLength */
        67: .line 188
            getstatic io.netty.util.CharsetUtil.US_ASCII:Ljava/nio/charset/Charset;
        68: .line 187
            invokevirtual io.netty.buffer.ByteBuf.toString:(IILjava/nio/charset/Charset;)Ljava/lang/String;
            astore 23 /* hostname */
        start local 23 // java.lang.String hostname
        69: .line 191
            aload 0 /* this */
            aload 1 /* ctx */
            aload 23 /* hostname */
            getstatic java.util.Locale.US:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            invokevirtual io.netty.handler.ssl.AbstractSniHandler.select:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)V
        70: .line 192
            goto 73
      StackMap locals: io.netty.handler.ssl.AbstractSniHandler io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf java.util.List int int int int int top int int int int int int int int int int int int int java.lang.String
      StackMap stack: java.lang.Throwable
        71: astore 24 /* t */
        start local 24 // java.lang.Throwable t
        72: .line 193
            aload 24 /* t */
            invokestatic io.netty.util.internal.PlatformDependent.throwException:(Ljava/lang/Throwable;)V
        end local 24 // java.lang.Throwable t
        73: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 23 // java.lang.String hostname
        end local 22 // int serverNameLength
        end local 21 // int serverNameType
        74: .line 202
      StackMap locals:
      StackMap stack:
            iload 13 /* offset */
            iload 20 /* extensionLength */
            iadd
            istore 13 /* offset */
        end local 20 // int extensionLength
        end local 19 // int extensionType
        75: .line 153
            goto 47
        end local 18 // int extensionsLimit
        end local 17 // int extensionsLength
        end local 16 // int compressionMethodLength
        end local 15 // int cipherSuitesLength
        end local 14 // int sessionIdLength
        end local 13 // int offset
        end local 12 // int endOffset
        end local 11 // int packetLength
        end local 10 // int majorVersion
        76: .line 208
      StackMap locals: io.netty.handler.ssl.AbstractSniHandler io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf java.util.List int int int int int
      StackMap stack:
            goto 85
        end local 8 // int command
        end local 7 // int readableBytes
        end local 6 // int readerIndex
        77: .line 61
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        78: iload 5 /* i */
            iconst_4
            if_icmplt 4
        end local 5 // int i
        79: .line 211
            goto 85
      StackMap locals: io.netty.handler.ssl.AbstractSniHandler io.netty.channel.ChannelHandlerContext io.netty.buffer.ByteBuf java.util.List int
      StackMap stack: io.netty.handler.ssl.NotSslRecordException
        80: astore 5 /* e */
        start local 5 // io.netty.handler.ssl.NotSslRecordException e
        81: .line 213
            aload 5 /* e */
            athrow
        end local 5 // io.netty.handler.ssl.NotSslRecordException e
        82: .line 214
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 5 /* e */
        start local 5 // java.lang.Exception e
        83: .line 216
            getstatic io.netty.handler.ssl.AbstractSniHandler.logger:Lio/netty/util/internal/logging/InternalLogger;
            invokeinterface io.netty.util.internal.logging.InternalLogger.isDebugEnabled:()Z
            ifeq 85
        84: .line 217
            getstatic io.netty.handler.ssl.AbstractSniHandler.logger:Lio/netty/util/internal/logging/InternalLogger;
            new java.lang.StringBuilder
            dup
            ldc "Unexpected client hello packet: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* in */
            invokestatic io.netty.buffer.ByteBufUtil.hexDump:(Lio/netty/buffer/ByteBuf;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* e */
            invokeinterface io.netty.util.internal.logging.InternalLogger.debug:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 5 // java.lang.Exception e
        85: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            aconst_null
            invokevirtual io.netty.handler.ssl.AbstractSniHandler.select:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)V
        end local 4 // int writerIndex
        86: .line 223
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.util.List out
        end local 2 // io.netty.buffer.ByteBuf in
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   87     0                     this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0   87     1                      ctx  Lio/netty/channel/ChannelHandlerContext;
            0   87     2                       in  Lio/netty/buffer/ByteBuf;
            0   87     3                      out  Ljava/util/List<Ljava/lang/Object;>;
            2   86     4              writerIndex  I
            3   79     5                        i  I
            5   77     6              readerIndex  I
            6   77     7            readableBytes  I
            9   77     8                  command  I
           11   25     9                      len  I
           16   20    10                        e  Lio/netty/handler/ssl/NotSslRecordException;
           26   76    10             majorVersion  I
           30   76    11             packetLength  I
           33   76    12                endOffset  I
           34   76    13                   offset  I
           37   76    14          sessionIdLength  I
           39   76    15       cipherSuitesLength  I
           41   76    16  compressionMethodLength  I
           43   76    17         extensionsLength  I
           45   76    18          extensionsLimit  I
           50   75    19            extensionType  I
           52   75    20          extensionLength  I
           60   74    21           serverNameType  I
           63   74    22         serverNameLength  I
           69   74    23                 hostname  Ljava/lang/String;
           72   73    24                        t  Ljava/lang/Throwable;
           81   82     5                        e  Lio/netty/handler/ssl/NotSslRecordException;
           83   85     5                        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          69    70      71  Class java.lang.Throwable
           2     7      80  Class io.netty.handler.ssl.NotSslRecordException
           8    22      80  Class io.netty.handler.ssl.NotSslRecordException
          23    31      80  Class io.netty.handler.ssl.NotSslRecordException
          32    73      80  Class io.netty.handler.ssl.NotSslRecordException
          74    79      80  Class io.netty.handler.ssl.NotSslRecordException
           2     7      82  Class java.lang.Exception
           8    22      82  Class java.lang.Exception
          23    31      82  Class java.lang.Exception
          32    73      82  Class java.lang.Exception
          74    79      82  Class java.lang.Exception
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      ctx   
      in    
      out   

  private void select(io.netty.channel.ChannelHandlerContext, java.lang.String);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.String hostname
         0: .line 226
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* hostname */
            invokevirtual io.netty.handler.ssl.AbstractSniHandler.lookup:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)Lio/netty/util/concurrent/Future;
            astore 3 /* future */
        start local 3 // io.netty.util.concurrent.Future future
         1: .line 227
            aload 3 /* future */
            invokeinterface io.netty.util.concurrent.Future.isDone:()Z
            ifeq 5
         2: .line 228
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* hostname */
            aload 3 /* future */
            invokevirtual io.netty.handler.ssl.AbstractSniHandler.fireSniCompletionEvent:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future;)V
         3: .line 229
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* hostname */
            aload 3 /* future */
            invokevirtual io.netty.handler.ssl.AbstractSniHandler.onLookupComplete:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future;)V
         4: .line 230
            goto 7
         5: .line 231
      StackMap locals: io.netty.util.concurrent.Future
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.ssl.AbstractSniHandler.suppressRead:Z
         6: .line 232
            aload 3 /* future */
            new io.netty.handler.ssl.AbstractSniHandler$1
            dup
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* hostname */
            invokespecial io.netty.handler.ssl.AbstractSniHandler$1.<init>:(Lio/netty/handler/ssl/AbstractSniHandler;Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)V
            invokeinterface io.netty.util.concurrent.Future.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
         7: .line 256
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.util.concurrent.Future future
        end local 2 // java.lang.String hostname
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    8     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            0    8     2  hostname  Ljava/lang/String;
            1    8     3    future  Lio/netty/util/concurrent/Future<TT;>;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      ctx       final
      hostname  final

  private void fireSniCompletionEvent(io.netty.channel.ChannelHandlerContext, java.lang.String, io.netty.util.concurrent.Future<T>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.String hostname
        start local 3 // io.netty.util.concurrent.Future future
         0: .line 259
            aload 3 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            astore 4 /* cause */
        start local 4 // java.lang.Throwable cause
         1: .line 260
            aload 4 /* cause */
            ifnonnull 4
         2: .line 261
            aload 1 /* ctx */
            new io.netty.handler.ssl.SniCompletionEvent
            dup
            aload 2 /* hostname */
            invokespecial io.netty.handler.ssl.SniCompletionEvent.<init>:(Ljava/lang/String;)V
            invokeinterface io.netty.channel.ChannelHandlerContext.fireUserEventTriggered:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
         3: .line 262
            goto 5
         4: .line 263
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1 /* ctx */
            new io.netty.handler.ssl.SniCompletionEvent
            dup
            aload 2 /* hostname */
            aload 4 /* cause */
            invokespecial io.netty.handler.ssl.SniCompletionEvent.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            invokeinterface io.netty.channel.ChannelHandlerContext.fireUserEventTriggered:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
         5: .line 265
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.Throwable cause
        end local 3 // io.netty.util.concurrent.Future future
        end local 2 // java.lang.String hostname
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    6     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            0    6     2  hostname  Ljava/lang/String;
            0    6     3    future  Lio/netty/util/concurrent/Future<TT;>;
            1    6     4     cause  Ljava/lang/Throwable;
    Signature: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future<TT;>;)V
    MethodParameters:
          Name  Flags
      ctx       
      hostname  
      future    

  protected abstract io.netty.util.concurrent.Future<T> lookup(io.netty.channel.ChannelHandlerContext, java.lang.String);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)Lio/netty/util/concurrent/Future;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)Lio/netty/util/concurrent/Future<TT;>;
    MethodParameters:
          Name  Flags
      ctx       
      hostname  

  protected abstract void onLookupComplete(io.netty.channel.ChannelHandlerContext, java.lang.String, io.netty.util.concurrent.Future<T>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;Lio/netty/util/concurrent/Future<TT;>;)V
    MethodParameters:
          Name  Flags
      ctx       
      hostname  
      future    

  public void read(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 285
            aload 0 /* this */
            getfield io.netty.handler.ssl.AbstractSniHandler.suppressRead:Z
            ifeq 3
         1: .line 286
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.ssl.AbstractSniHandler.readPending:Z
         2: .line 287
            goto 4
         3: .line 288
      StackMap locals:
      StackMap stack:
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.read:()Lio/netty/channel/ChannelHandlerContext;
            pop
         4: .line 290
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    5     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   

  public void bind(io.netty.channel.ChannelHandlerContext, java.net.SocketAddress, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/net/SocketAddress;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.net.SocketAddress localAddress
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 294
            aload 1 /* ctx */
            aload 2 /* localAddress */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.bind:(Ljava/net/SocketAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 295
            return
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // java.net.SocketAddress localAddress
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1           ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  localAddress  Ljava/net/SocketAddress;
            0    2     3       promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
              Name  Flags
      ctx           
      localAddress  
      promise       

  public void connect(io.netty.channel.ChannelHandlerContext, java.net.SocketAddress, java.net.SocketAddress, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/net/SocketAddress;Ljava/net/SocketAddress;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.net.SocketAddress remoteAddress
        start local 3 // java.net.SocketAddress localAddress
        start local 4 // io.netty.channel.ChannelPromise promise
         0: .line 300
            aload 1 /* ctx */
            aload 2 /* remoteAddress */
            aload 3 /* localAddress */
            aload 4 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.connect:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 301
            return
        end local 4 // io.netty.channel.ChannelPromise promise
        end local 3 // java.net.SocketAddress localAddress
        end local 2 // java.net.SocketAddress remoteAddress
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1            ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  remoteAddress  Ljava/net/SocketAddress;
            0    2     3   localAddress  Ljava/net/SocketAddress;
            0    2     4        promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
               Name  Flags
      ctx            
      remoteAddress  
      localAddress   
      promise        

  public void disconnect(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 305
            aload 1 /* ctx */
            aload 2 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.disconnect:(Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 306
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      promise  

  public void close(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 310
            aload 1 /* ctx */
            aload 2 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.close:(Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 311
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      promise  

  public void deregister(io.netty.channel.ChannelHandlerContext, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 315
            aload 1 /* ctx */
            aload 2 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.deregister:(Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 316
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      promise  

  public void write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Object msg
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 320
            aload 1 /* ctx */
            aload 2 /* msg */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.write:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         1: .line 321
            return
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // java.lang.Object msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    2     2      msg  Ljava/lang/Object;
            0    2     3  promise  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      msg      
      promise  

  public void flush(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.handler.ssl.AbstractSniHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 325
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         1: .line 326
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.ssl.AbstractSniHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/ssl/AbstractSniHandler<TT;>;
            0    2     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
}
Signature: <T:Ljava/lang/Object;>Lio/netty/handler/codec/ByteToMessageDecoder;Lio/netty/channel/ChannelOutboundHandler;
SourceFile: "AbstractSniHandler.java"
NestMembers:
  io.netty.handler.ssl.AbstractSniHandler$1
InnerClasses:
  io.netty.handler.ssl.AbstractSniHandler$1