final class io.undertow.protocols.ssl.ALPNHackClientHelloExplorer
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.undertow.protocols.ssl.ALPNHackClientHelloExplorer
  super_class: java.lang.Object
{
  public static final int RECORD_HEADER_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.ssl.ALPNHackClientHelloExplorer this
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            return
        end local 0 // io.undertow.protocols.ssl.ALPNHackClientHelloExplorer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/protocols/ssl/ALPNHackClientHelloExplorer;

  static java.util.List<java.lang.String> exploreClientHello(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/util/List;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // java.nio.ByteBuffer source
         0: .line 61
            aload 0 /* source */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 1 /* input */
        start local 1 // java.nio.ByteBuffer input
         1: .line 64
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iconst_5
            if_icmpge 3
         2: .line 65
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 67
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* alpnProtocols */
        start local 2 // java.util.List alpnProtocols
         4: .line 69
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 3 /* firstByte */
        start local 3 // byte firstByte
         5: .line 70
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 4 /* secondByte */
        start local 4 // byte secondByte
         6: .line 71
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 5 /* thirdByte */
        start local 5 // byte thirdByte
         7: .line 73
            iload 3 /* firstByte */
            sipush 128
            iand
            ifeq 9
            iload 5 /* thirdByte */
            iconst_1
            if_icmpne 9
         8: .line 75
            aconst_null
            areturn
         9: .line 76
      StackMap locals: java.nio.ByteBuffer java.nio.ByteBuffer java.util.List int int int
      StackMap stack:
            iload 3 /* firstByte */
            bipush 22
            if_icmpne 16
        10: .line 77
            iload 4 /* secondByte */
            iconst_3
            if_icmpne 15
            iload 5 /* thirdByte */
            iconst_1
            if_icmplt 15
            iload 5 /* thirdByte */
            iconst_3
            if_icmpgt 15
        11: .line 78
            aload 1 /* input */
        12: .line 79
            iload 3 /* firstByte */
            iload 4 /* secondByte */
            iload 5 /* thirdByte */
            aload 2 /* alpnProtocols */
            aconst_null
        13: .line 78
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreTLSRecord:(Ljava/nio/ByteBuffer;BBBLjava/util/List;Ljava/io/ByteArrayOutputStream;)V
        14: .line 80
            aload 2 /* alpnProtocols */
            areturn
        15: .line 82
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        16: .line 84
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.notHandshakeRecord:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
        end local 5 // byte thirdByte
        end local 4 // byte secondByte
        end local 3 // byte firstByte
        end local 2 // java.util.List alpnProtocols
        end local 1 // java.nio.ByteBuffer input
        end local 0 // java.nio.ByteBuffer source
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0         source  Ljava/nio/ByteBuffer;
            1   17     1          input  Ljava/nio/ByteBuffer;
            4   17     2  alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            5   17     3      firstByte  B
            6   17     4     secondByte  B
            7   17     5      thirdByte  B
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: (Ljava/nio/ByteBuffer;)Ljava/util/List<Ljava/lang/String;>;
    MethodParameters:
        Name  Flags
      source  

  static byte[] rewriteClientHello(byte[], java.util.List<java.lang.String>);
    descriptor: ([BLjava/util/List;)[B
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // byte[] source
        start local 1 // java.util.List alpnProtocols
         0: .line 89
            aload 0 /* source */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* input */
        start local 2 // java.nio.ByteBuffer input
         1: .line 90
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 3 /* out */
        start local 3 // java.io.ByteArrayOutputStream out
         2: .line 93
            aload 2 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iconst_5
            if_icmpge 4
         3: .line 94
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         4: .line 99
      StackMap locals: java.nio.ByteBuffer java.io.ByteArrayOutputStream
      StackMap stack:
            aload 2 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 4 /* firstByte */
        start local 4 // byte firstByte
         5: .line 100
            aload 2 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 5 /* secondByte */
        start local 5 // byte secondByte
         6: .line 101
            aload 2 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 6 /* thirdByte */
        start local 6 // byte thirdByte
         7: .line 102
            aload 3 /* out */
            iload 4 /* firstByte */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         8: .line 103
            aload 3 /* out */
            iload 5 /* secondByte */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         9: .line 104
            aload 3 /* out */
            iload 6 /* thirdByte */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        10: .line 105
            iload 4 /* firstByte */
            sipush 128
            iand
            ifeq 12
            iload 6 /* thirdByte */
            iconst_1
            if_icmpne 12
        11: .line 107
            aconst_null
            areturn
        12: .line 108
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* firstByte */
            bipush 22
            if_icmpne 28
        13: .line 109
            iload 5 /* secondByte */
            iconst_3
            if_icmpne 27
            iload 6 /* thirdByte */
            iconst_3
            if_icmpne 27
        14: .line 111
            aload 2 /* input */
        15: .line 112
            iload 4 /* firstByte */
            iload 5 /* secondByte */
            iload 6 /* thirdByte */
            aload 1 /* alpnProtocols */
            aload 3 /* out */
        16: .line 111
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreTLSRecord:(Ljava/nio/ByteBuffer;BBBLjava/util/List;Ljava/io/ByteArrayOutputStream;)V
        17: .line 114
            aload 3 /* out */
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            bipush 9
            isub
            istore 7 /* clientHelloLength */
        start local 7 // int clientHelloLength
        18: .line 115
            aload 3 /* out */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 8 /* data */
        start local 8 // byte[] data
        19: .line 116
            aload 8 /* data */
            arraylength
            iconst_5
            isub
            istore 9 /* newLength */
        start local 9 // int newLength
        20: .line 117
            aload 8 /* data */
            iconst_3
            iload 9 /* newLength */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
        21: .line 118
            aload 8 /* data */
            iconst_4
            iload 9 /* newLength */
            sipush 255
            iand
            i2b
            bastore
        22: .line 121
            aload 8 /* data */
            bipush 6
            iload 7 /* clientHelloLength */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            bastore
        23: .line 122
            aload 8 /* data */
            bipush 7
            iload 7 /* clientHelloLength */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
        24: .line 123
            aload 8 /* data */
            bipush 8
            iload 7 /* clientHelloLength */
            sipush 255
            iand
            i2b
            bastore
        25: .line 125
            aload 8 /* data */
        26: areturn
        end local 9 // int newLength
        end local 8 // byte[] data
        end local 7 // int clientHelloLength
        27: .line 127
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        28: .line 129
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.notHandshakeRecord:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
        end local 6 // byte thirdByte
        end local 5 // byte secondByte
        end local 4 // byte firstByte
        29: .line 131
      StackMap locals: byte[] java.util.List java.nio.ByteBuffer java.io.ByteArrayOutputStream
      StackMap stack: io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
            pop
        30: .line 132
            aconst_null
            areturn
        end local 3 // java.io.ByteArrayOutputStream out
        end local 2 // java.nio.ByteBuffer input
        end local 1 // java.util.List alpnProtocols
        end local 0 // byte[] source
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   31     0             source  [B
            0   31     1      alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            1   31     2              input  Ljava/nio/ByteBuffer;
            2   31     3                out  Ljava/io/ByteArrayOutputStream;
            5   29     4          firstByte  B
            6   29     5         secondByte  B
            7   29     6          thirdByte  B
           18   27     7  clientHelloLength  I
           19   27     8               data  [B
           20   27     9          newLength  I
      Exception table:
        from    to  target  type
           4    11      29  Class io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
          12    26      29  Class io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
          28    29      29  Class io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: ([BLjava/util/List<Ljava/lang/String;>;)[B
    MethodParameters:
               Name  Flags
      source         
      alpnProtocols  

  private static void exploreTLSRecord(java.nio.ByteBuffer, byte, byte, byte, java.util.List<java.lang.String>, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;BBBLjava/util/List;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // java.nio.ByteBuffer input
        start local 1 // byte firstByte
        start local 2 // byte secondByte
        start local 3 // byte thirdByte
        start local 4 // java.util.List alpnProtocols
        start local 5 // java.io.ByteArrayOutputStream out
         0: .line 159
            iload 1 /* firstByte */
            bipush 22
            if_icmpeq 2
         1: .line 160
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.notHandshakeRecord:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
         2: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 6 /* recordLength */
        start local 6 // int recordLength
         3: .line 165
            iload 6 /* recordLength */
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 5
         4: .line 166
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         5: .line 168
      StackMap locals: int
      StackMap stack:
            aload 5 /* out */
            ifnull 8
         6: .line 169
            aload 5 /* out */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         7: .line 170
            aload 5 /* out */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         8: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
         9: .line 176
            iload 2 /* secondByte */
            iload 3 /* thirdByte */
            iload 6 /* recordLength */
            aload 4 /* alpnProtocols */
            aload 5 /* out */
        10: .line 175
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreHandshake:(Ljava/nio/ByteBuffer;BBILjava/util/List;Ljava/io/ByteArrayOutputStream;)V
        11: .line 177
            goto 14
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
        12: pop
        13: .line 178
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.invalidHandshakeRecord:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
        14: .line 180
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int recordLength
        end local 5 // java.io.ByteArrayOutputStream out
        end local 4 // java.util.List alpnProtocols
        end local 3 // byte thirdByte
        end local 2 // byte secondByte
        end local 1 // byte firstByte
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   15     0          input  Ljava/nio/ByteBuffer;
            0   15     1      firstByte  B
            0   15     2     secondByte  B
            0   15     3      thirdByte  B
            0   15     4  alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            0   15     5            out  Ljava/io/ByteArrayOutputStream;
            3   15     6   recordLength  I
      Exception table:
        from    to  target  type
           8    11      12  Class java.nio.BufferUnderflowException
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: (Ljava/nio/ByteBuffer;BBBLjava/util/List<Ljava/lang/String;>;Ljava/io/ByteArrayOutputStream;)V
    MethodParameters:
               Name  Flags
      input          
      firstByte      
      secondByte     
      thirdByte      
      alpnProtocols  
      out            

  private static void exploreHandshake(java.nio.ByteBuffer, byte, byte, int, java.util.List<java.lang.String>, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;BBILjava/util/List;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=8, args_size=6
        start local 0 // java.nio.ByteBuffer input
        start local 1 // byte recordMajorVersion
        start local 2 // byte recordMinorVersion
        start local 3 // int recordLength
        start local 4 // java.util.List alpnProtocols
        start local 5 // java.io.ByteArrayOutputStream out
         0: .line 214
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 6 /* handshakeType */
        start local 6 // byte handshakeType
         1: .line 215
            iload 6 /* handshakeType */
            iconst_1
            if_icmpeq 3
         2: .line 216
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.expectedClientHello:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
         3: .line 218
      StackMap locals: int
      StackMap stack:
            aload 5 /* out */
            ifnull 5
         4: .line 219
            aload 5 /* out */
            iload 6 /* handshakeType */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         5: .line 223
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt24:(Ljava/nio/ByteBuffer;)I
            istore 7 /* handshakeLength */
        start local 7 // int handshakeLength
         6: .line 224
            aload 5 /* out */
            ifnull 10
         7: .line 226
            aload 5 /* out */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         8: .line 227
            aload 5 /* out */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         9: .line 228
            aload 5 /* out */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        10: .line 233
      StackMap locals: int
      StackMap stack:
            iload 7 /* handshakeLength */
            iload 3 /* recordLength */
            iconst_4
            isub
            if_icmple 12
        11: .line 234
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.multiRecordSSLHandshake:()Ljavax/net/ssl/SSLHandshakeException;
            athrow
        12: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 0 /* input */
        13: .line 238
            aload 0 /* input */
            iload 7 /* handshakeLength */
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        14: .line 239
            aload 0 /* input */
            aload 4 /* alpnProtocols */
            aload 5 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreClientHello:(Ljava/nio/ByteBuffer;Ljava/util/List;Ljava/io/ByteArrayOutputStream;)V
        15: .line 240
            return
        end local 7 // int handshakeLength
        end local 6 // byte handshakeType
        end local 5 // java.io.ByteArrayOutputStream out
        end local 4 // java.util.List alpnProtocols
        end local 3 // int recordLength
        end local 2 // byte recordMinorVersion
        end local 1 // byte recordMajorVersion
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   16     0               input  Ljava/nio/ByteBuffer;
            0   16     1  recordMajorVersion  B
            0   16     2  recordMinorVersion  B
            0   16     3        recordLength  I
            0   16     4       alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            0   16     5                 out  Ljava/io/ByteArrayOutputStream;
            1   16     6       handshakeType  B
            6   16     7     handshakeLength  I
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: (Ljava/nio/ByteBuffer;BBILjava/util/List<Ljava/lang/String;>;Ljava/io/ByteArrayOutputStream;)V
    MethodParameters:
                    Name  Flags
      input               
      recordMajorVersion  
      recordMinorVersion  
      recordLength        
      alpnProtocols       
      out                 

  private static void exploreClientHello(java.nio.ByteBuffer, java.util.List<java.lang.String>, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/util/List;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // java.nio.ByteBuffer input
        start local 1 // java.util.List alpnProtocols
        start local 2 // java.io.ByteArrayOutputStream out
         0: .line 274
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 3 /* helloMajorVersion */
        start local 3 // byte helloMajorVersion
         1: .line 275
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 4 /* helloMinorVersion */
        start local 4 // byte helloMinorVersion
         2: .line 276
            aload 2 /* out */
            ifnull 5
         3: .line 277
            aload 2 /* out */
            iload 3 /* helloMajorVersion */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         4: .line 278
            aload 2 /* out */
            iload 4 /* helloMinorVersion */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         5: .line 280
      StackMap locals: int int
      StackMap stack:
            iload 3 /* helloMajorVersion */
            iconst_3
            if_icmpeq 7
            iload 4 /* helloMinorVersion */
            iconst_3
            if_icmpeq 7
         6: .line 282
            return
         7: .line 287
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 13
         9: .line 288
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 6 /* d */
        start local 6 // byte d
        10: .line 289
            aload 2 /* out */
            ifnull 12
        11: .line 290
            aload 2 /* out */
            iload 6 /* d */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        end local 6 // byte d
        12: .line 287
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 5 /* i */
            bipush 32
            if_icmplt 9
        end local 5 // int i
        14: .line 295
            aload 0 /* input */
            aload 2 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector8:(Ljava/nio/ByteBuffer;Ljava/io/ByteArrayOutputStream;)V
        15: .line 298
            aload 0 /* input */
            aload 2 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector16:(Ljava/nio/ByteBuffer;Ljava/io/ByteArrayOutputStream;)V
        16: .line 301
            aload 0 /* input */
            aload 2 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector8:(Ljava/nio/ByteBuffer;Ljava/io/ByteArrayOutputStream;)V
        17: .line 302
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifle 20
        18: .line 303
            aload 0 /* input */
            aload 1 /* alpnProtocols */
            aload 2 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreExtensions:(Ljava/nio/ByteBuffer;Ljava/util/List;Ljava/io/ByteArrayOutputStream;)V
        19: .line 304
            goto 24
      StackMap locals:
      StackMap stack:
        20: aload 2 /* out */
            ifnull 24
        21: .line 305
            aload 1 /* alpnProtocols */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.generateAlpnExtension:(Ljava/util/List;)[B
            astore 5 /* data */
        start local 5 // byte[] data
        22: .line 306
            aload 2 /* out */
            aload 5 /* data */
            arraylength
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
        23: .line 307
            aload 2 /* out */
            aload 5 /* data */
            iconst_0
            aload 5 /* data */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 5 // byte[] data
        24: .line 309
      StackMap locals:
      StackMap stack:
            return
        end local 4 // byte helloMinorVersion
        end local 3 // byte helloMajorVersion
        end local 2 // java.io.ByteArrayOutputStream out
        end local 1 // java.util.List alpnProtocols
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   25     0              input  Ljava/nio/ByteBuffer;
            0   25     1      alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            0   25     2                out  Ljava/io/ByteArrayOutputStream;
            1   25     3  helloMajorVersion  B
            2   25     4  helloMinorVersion  B
            8   14     5                  i  I
           10   12     6                  d  B
           22   24     5               data  [B
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: (Ljava/nio/ByteBuffer;Ljava/util/List<Ljava/lang/String;>;Ljava/io/ByteArrayOutputStream;)V
    MethodParameters:
               Name  Flags
      input          
      alpnProtocols  
      out            

  private static void writeInt16(java.io.ByteArrayOutputStream, int);
    descriptor: (Ljava/io/ByteArrayOutputStream;I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.ByteArrayOutputStream out
        start local 1 // int l
         0: .line 312
            aload 0 /* out */
            ifnonnull 1
            return
         1: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* out */
            iload 1 /* l */
            bipush 8
            ishr
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         2: .line 314
            aload 0 /* out */
            iload 1 /* l */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         3: .line 315
            return
        end local 1 // int l
        end local 0 // java.io.ByteArrayOutputStream out
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0   out  Ljava/io/ByteArrayOutputStream;
            0    4     1     l  I
    MethodParameters:
      Name  Flags
      out   
      l     

  private static byte[] generateAlpnExtension(java.util.List<java.lang.String>);
    descriptor: (Ljava/util/List;)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // java.util.List alpnProtocols
         0: .line 318
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 1 /* alpnBits */
        start local 1 // java.io.ByteArrayOutputStream alpnBits
         1: .line 319
            aload 1 /* alpnBits */
            iconst_0
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         2: .line 320
            aload 1 /* alpnBits */
            bipush 16
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         3: .line 321
            iconst_2
            istore 2 /* length */
        start local 2 // int length
         4: .line 322
            aload 0 /* alpnProtocols */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: java.util.List java.io.ByteArrayOutputStream int top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* p */
        start local 3 // java.lang.String p
         6: .line 323
            iinc 2 /* length */ 1
         7: .line 324
            iload 2 /* length */
            aload 3 /* p */
            invokevirtual java.lang.String.length:()I
            iadd
            istore 2 /* length */
        end local 3 // java.lang.String p
         8: .line 322
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         9: .line 326
            aload 1 /* alpnBits */
            iload 2 /* length */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
        10: .line 327
            iinc 2 /* length */ -2
        11: .line 328
            aload 1 /* alpnBits */
            iload 2 /* length */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
        12: .line 329
            aload 0 /* alpnProtocols */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 20
      StackMap locals:
      StackMap stack:
        13: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* p */
        start local 3 // java.lang.String p
        14: .line 330
            aload 1 /* alpnBits */
            aload 3 /* p */
            invokevirtual java.lang.String.length:()I
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        15: .line 331
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        16: goto 19
        17: .line 332
      StackMap locals: java.util.List java.io.ByteArrayOutputStream int java.lang.String java.util.Iterator int
      StackMap stack:
            aload 1 /* alpnBits */
            aload 3 /* p */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        18: .line 331
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* i */
            aload 3 /* p */
            invokevirtual java.lang.String.length:()I
            if_icmplt 17
        end local 5 // int i
        end local 3 // java.lang.String p
        20: .line 329
      StackMap locals: java.util.List java.io.ByteArrayOutputStream int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 13
        21: .line 335
            aload 1 /* alpnBits */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 2 // int length
        end local 1 // java.io.ByteArrayOutputStream alpnBits
        end local 0 // java.util.List alpnProtocols
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   22     0  alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            1   22     1       alpnBits  Ljava/io/ByteArrayOutputStream;
            4   22     2         length  I
            6    8     3              p  Ljava/lang/String;
           14   20     3              p  Ljava/lang/String;
           16   20     5              i  I
    Signature: (Ljava/util/List<Ljava/lang/String;>;)[B
    MethodParameters:
               Name  Flags
      alpnProtocols  

  private static void exploreExtensions(java.nio.ByteBuffer, java.util.List<java.lang.String>, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/util/List;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // java.nio.ByteBuffer input
        start local 1 // java.util.List alpnProtocols
        start local 2 // java.io.ByteArrayOutputStream out
         0: .line 352
            aload 2 /* out */
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
      StackMap locals:
      StackMap stack: java.io.ByteArrayOutputStream
         2: astore 3 /* extensionOut */
        start local 3 // java.io.ByteArrayOutputStream extensionOut
         3: .line 353
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 4 /* length */
        start local 4 // int length
         4: .line 354
            aload 3 /* extensionOut */
            iconst_0
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
         5: .line 355
            goto 17
         6: .line 356
      StackMap locals: java.io.ByteArrayOutputStream int
      StackMap stack:
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 5 /* extType */
        start local 5 // int extType
         7: .line 357
            aload 3 /* extensionOut */
            iload 5 /* extType */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
         8: .line 358
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 6 /* extLen */
        start local 6 // int extLen
         9: .line 359
            aload 3 /* extensionOut */
            iload 6 /* extLen */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
        10: .line 360
            iload 5 /* extType */
            bipush 16
            if_icmpne 15
        11: .line 361
            aload 2 /* out */
            ifnonnull 14
        12: .line 362
            aload 0 /* input */
            aload 1 /* alpnProtocols */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.exploreALPNExt:(Ljava/nio/ByteBuffer;Ljava/util/List;)V
        13: .line 363
            goto 16
        14: .line 364
      StackMap locals: int int
      StackMap stack:
            new io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
            dup
            invokespecial io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException.<init>:()V
            athrow
        15: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
            iload 6 /* extLen */
            aload 3 /* extensionOut */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector:(Ljava/nio/ByteBuffer;ILjava/io/ByteArrayOutputStream;)V
        16: .line 370
      StackMap locals:
      StackMap stack:
            iload 4 /* length */
            iload 6 /* extLen */
            iconst_4
            iadd
            isub
            istore 4 /* length */
        end local 6 // int extLen
        end local 5 // int extType
        17: .line 355
      StackMap locals:
      StackMap stack:
            iload 4 /* length */
            ifgt 6
        18: .line 372
            aload 2 /* out */
            ifnull 26
        19: .line 373
            aload 1 /* alpnProtocols */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.generateAlpnExtension:(Ljava/util/List;)[B
            astore 5 /* alpnBits */
        start local 5 // byte[] alpnBits
        20: .line 374
            aload 3 /* extensionOut */
            aload 5 /* alpnBits */
            iconst_0
            aload 5 /* alpnBits */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        21: .line 375
            aload 3 /* extensionOut */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 6 /* extensionsData */
        start local 6 // byte[] extensionsData
        22: .line 376
            aload 6 /* extensionsData */
            arraylength
            iconst_2
            isub
            istore 7 /* newLength */
        start local 7 // int newLength
        23: .line 377
            aload 6 /* extensionsData */
            iconst_0
            iload 7 /* newLength */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
        24: .line 378
            aload 6 /* extensionsData */
            iconst_1
            iload 7 /* newLength */
            sipush 255
            iand
            i2b
            bastore
        25: .line 379
            aload 2 /* out */
            aload 6 /* extensionsData */
            iconst_0
            aload 6 /* extensionsData */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 7 // int newLength
        end local 6 // byte[] extensionsData
        end local 5 // byte[] alpnBits
        26: .line 382
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int length
        end local 3 // java.io.ByteArrayOutputStream extensionOut
        end local 2 // java.io.ByteArrayOutputStream out
        end local 1 // java.util.List alpnProtocols
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   27     0           input  Ljava/nio/ByteBuffer;
            0   27     1   alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            0   27     2             out  Ljava/io/ByteArrayOutputStream;
            3   27     3    extensionOut  Ljava/io/ByteArrayOutputStream;
            4   27     4          length  I
            7   17     5         extType  I
            9   17     6          extLen  I
           20   26     5        alpnBits  [B
           22   26     6  extensionsData  [B
           23   26     7       newLength  I
    Exceptions:
      throws javax.net.ssl.SSLException
    Signature: (Ljava/nio/ByteBuffer;Ljava/util/List<Ljava/lang/String;>;Ljava/io/ByteArrayOutputStream;)V
    MethodParameters:
               Name  Flags
      input          
      alpnProtocols  
      out            

  private static void exploreALPNExt(java.nio.ByteBuffer, java.util.List<java.lang.String>);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/util/List;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.nio.ByteBuffer input
        start local 1 // java.util.List alpnProtocols
         0: .line 385
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 2 /* length */
        start local 2 // int length
         1: .line 386
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* length */
            iadd
            istore 3 /* end */
        start local 3 // int end
         2: .line 387
            goto 4
         3: .line 388
      StackMap locals: int int
      StackMap stack:
            aload 1 /* alpnProtocols */
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.readByteVector8:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 3 /* end */
            if_icmplt 3
         5: .line 390
            return
        end local 3 // int end
        end local 2 // int length
        end local 1 // java.util.List alpnProtocols
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0          input  Ljava/nio/ByteBuffer;
            0    6     1  alpnProtocols  Ljava/util/List<Ljava/lang/String;>;
            1    6     2         length  I
            2    6     3            end  I
    Signature: (Ljava/nio/ByteBuffer;Ljava/util/List<Ljava/lang/String;>;)V
    MethodParameters:
               Name  Flags
      input          
      alpnProtocols  

  private static int getInt8(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer input
         0: .line 393
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            ireturn
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  input  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      input  

  private static int getInt16(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer input
         0: .line 397
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            ior
            ireturn
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  input  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      input  

  private static int getInt24(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer input
         0: .line 401
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 16
            ishl
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
            ior
         1: .line 402
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
         2: .line 401
            ior
            ireturn
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  input  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      input  

  private static void processByteVector8(java.nio.ByteBuffer, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer input
        start local 1 // java.io.ByteArrayOutputStream out
         0: .line 406
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt8:(Ljava/nio/ByteBuffer;)I
            istore 2 /* int8 */
        start local 2 // int int8
         1: .line 407
            aload 1 /* out */
            ifnull 3
         2: .line 408
            aload 1 /* out */
            iload 2 /* int8 */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         3: .line 410
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 2 /* int8 */
            aload 1 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector:(Ljava/nio/ByteBuffer;ILjava/io/ByteArrayOutputStream;)V
         4: .line 411
            return
        end local 2 // int int8
        end local 1 // java.io.ByteArrayOutputStream out
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0  input  Ljava/nio/ByteBuffer;
            0    5     1    out  Ljava/io/ByteArrayOutputStream;
            1    5     2   int8  I
    MethodParameters:
       Name  Flags
      input  
      out    

  private static void processByteVector(java.nio.ByteBuffer, int, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;ILjava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // java.nio.ByteBuffer input
        start local 1 // int length
        start local 2 // java.io.ByteArrayOutputStream out
         0: .line 415
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 6
         2: .line 416
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 4 /* b */
        start local 4 // byte b
         3: .line 417
            aload 2 /* out */
            ifnull 5
         4: .line 418
            aload 2 /* out */
            iload 4 /* b */
            sipush 255
            iand
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        end local 4 // byte b
         5: .line 415
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 1 /* length */
            if_icmplt 2
        end local 3 // int i
         7: .line 421
            return
        end local 2 // java.io.ByteArrayOutputStream out
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0   input  Ljava/nio/ByteBuffer;
            0    8     1  length  I
            0    8     2     out  Ljava/io/ByteArrayOutputStream;
            1    7     3       i  I
            3    5     4       b  B
    MethodParameters:
        Name  Flags
      input   
      length  
      out     

  private static java.lang.String readByteVector8(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer input
         0: .line 423
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt8:(Ljava/nio/ByteBuffer;)I
            istore 1 /* length */
        start local 1 // int length
         1: .line 424
            iload 1 /* length */
            newarray 8
            astore 2 /* data */
        start local 2 // byte[] data
         2: .line 425
            aload 0 /* input */
            aload 2 /* data */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         3: .line 426
            new java.lang.String
            dup
            aload 2 /* data */
            getstatic java.nio.charset.StandardCharsets.US_ASCII:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            areturn
        end local 2 // byte[] data
        end local 1 // int length
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   input  Ljava/nio/ByteBuffer;
            1    4     1  length  I
            2    4     2    data  [B
    MethodParameters:
       Name  Flags
      input  

  private static void processByteVector16(java.nio.ByteBuffer, java.io.ByteArrayOutputStream);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/io/ByteArrayOutputStream;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer input
        start local 1 // java.io.ByteArrayOutputStream out
         0: .line 430
            aload 0 /* input */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 2 /* int16 */
        start local 2 // int int16
         1: .line 431
            aload 1 /* out */
            iload 2 /* int16 */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.writeInt16:(Ljava/io/ByteArrayOutputStream;I)V
         2: .line 432
            aload 0 /* input */
            iload 2 /* int16 */
            aload 1 /* out */
            invokestatic io.undertow.protocols.ssl.ALPNHackClientHelloExplorer.processByteVector:(Ljava/nio/ByteBuffer;ILjava/io/ByteArrayOutputStream;)V
         3: .line 433
            return
        end local 2 // int int16
        end local 1 // java.io.ByteArrayOutputStream out
        end local 0 // java.nio.ByteBuffer input
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0  input  Ljava/nio/ByteBuffer;
            0    4     1    out  Ljava/io/ByteArrayOutputStream;
            1    4     2  int16  I
    MethodParameters:
       Name  Flags
      input  
      out    
}
SourceFile: "ALPNHackClientHelloExplorer.java"
NestMembers:
  io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException
InnerClasses:
  private final ALPNPresentException = io.undertow.protocols.ssl.ALPNHackClientHelloExplorer$ALPNPresentException of io.undertow.protocols.ssl.ALPNHackClientHelloExplorer