public class io.undertow.server.protocol.http2.Http2ReceiveListener implements org.xnio.ChannelListener<io.undertow.protocols.http2.Http2Channel>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.server.protocol.http2.Http2ReceiveListener
  super_class: java.lang.Object
{
  static final io.undertow.util.HttpString METHOD;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final io.undertow.util.HttpString PATH;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final io.undertow.util.HttpString SCHEME;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final io.undertow.util.HttpString AUTHORITY;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private final io.undertow.server.HttpHandler rootHandler;
    descriptor: Lio/undertow/server/HttpHandler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long maxEntitySize;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.OptionMap undertowOptions;
    descriptor: Lorg/xnio/OptionMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  private final int bufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxParameters;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final io.undertow.server.ConnectorStatisticsImpl connectorStatistics;
    descriptor: Lio/undertow/server/ConnectorStatisticsImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.util.concurrent.atomic.AtomicIntegerFieldUpdater<io.undertow.server.protocol.http2.Http2ReceiveListener> concurrentRequestsUpdater;
    descriptor: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater<Lio/undertow/server/protocol/http2/Http2ReceiveListener;>;

  private volatile int concurrentRequests;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 63
            new io.undertow.util.HttpString
            dup
            ldc ":method"
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
         1: .line 64
            new io.undertow.util.HttpString
            dup
            ldc ":path"
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
         2: .line 65
            new io.undertow.util.HttpString
            dup
            ldc ":scheme"
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
         3: .line 66
            new io.undertow.util.HttpString
            dup
            ldc ":authority"
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.server.protocol.http2.Http2ReceiveListener.AUTHORITY:Lio/undertow/util/HttpString;
         4: .line 83
            ldc Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            ldc "concurrentRequests"
            invokestatic java.util.concurrent.atomic.AtomicIntegerFieldUpdater.newUpdater:(Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            putstatic io.undertow.server.protocol.http2.Http2ReceiveListener.concurrentRequestsUpdater:Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.undertow.server.HttpHandler, org.xnio.OptionMap, int, io.undertow.server.ConnectorStatisticsImpl);
    descriptor: (Lio/undertow/server/HttpHandler;Lorg/xnio/OptionMap;ILio/undertow/server/ConnectorStatisticsImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
        start local 1 // io.undertow.server.HttpHandler rootHandler
        start local 2 // org.xnio.OptionMap undertowOptions
        start local 3 // int bufferSize
        start local 4 // io.undertow.server.ConnectorStatisticsImpl connectorStatistics
         0: .line 91
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.decodeBuffer:Ljava/lang/StringBuilder;
         2: .line 92
            aload 0 /* this */
            aload 1 /* rootHandler */
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.rootHandler:Lio/undertow/server/HttpHandler;
         3: .line 93
            aload 0 /* this */
            aload 2 /* undertowOptions */
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.undertowOptions:Lorg/xnio/OptionMap;
         4: .line 94
            aload 0 /* this */
            iload 3 /* bufferSize */
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.bufferSize:I
         5: .line 95
            aload 0 /* this */
            aload 4 /* connectorStatistics */
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.connectorStatistics:Lio/undertow/server/ConnectorStatisticsImpl;
         6: .line 96
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.MAX_ENTITY_SIZE:Lorg/xnio/Option;
            ldc -1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;J)J
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxEntitySize:J
         7: .line 97
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.ALLOW_ENCODED_SLASH:Lorg/xnio/Option;
            iconst_0
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.allowEncodingSlash:Z
         8: .line 98
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.DECODE_URL:Lorg/xnio/Option;
            iconst_1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.decode:Z
         9: .line 99
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.MAX_PARAMETERS:Lorg/xnio/Option;
            sipush 1000
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;I)I
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxParameters:I
        10: .line 100
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.RECORD_REQUEST_START_TIME:Lorg/xnio/Option;
            iconst_0
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.recordRequestStartTime:Z
        11: .line 101
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.DECODE_URL:Lorg/xnio/Option;
            iconst_1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            ifeq 14
        12: .line 102
            aload 0 /* this */
            aload 2 /* undertowOptions */
            getstatic io.undertow.UndertowOptions.URL_CHARSET:Lorg/xnio/Option;
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.name:()Ljava/lang/String;
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.encoding:Ljava/lang/String;
        13: .line 103
            goto 15
        14: .line 104
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.server.HttpHandler org.xnio.OptionMap int io.undertow.server.ConnectorStatisticsImpl
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http2.Http2ReceiveListener.encoding:Ljava/lang/String;
        15: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.undertow.server.ConnectorStatisticsImpl connectorStatistics
        end local 3 // int bufferSize
        end local 2 // org.xnio.OptionMap undertowOptions
        end local 1 // io.undertow.server.HttpHandler rootHandler
        end local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   16     0                 this  Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            0   16     1          rootHandler  Lio/undertow/server/HttpHandler;
            0   16     2      undertowOptions  Lorg/xnio/OptionMap;
            0   16     3           bufferSize  I
            0   16     4  connectorStatistics  Lio/undertow/server/ConnectorStatisticsImpl;
    MethodParameters:
                     Name  Flags
      rootHandler          
      undertowOptions      
      bufferSize           
      connectorStatistics  

  public void handleEvent(io.undertow.protocols.http2.Http2Channel);
    descriptor: (Lio/undertow/protocols/http2/Http2Channel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
        start local 1 // io.undertow.protocols.http2.Http2Channel channel
         0: .line 112
            aload 1 /* channel */
            invokevirtual io.undertow.protocols.http2.Http2Channel.receive:()Lio/undertow/server/protocol/framed/AbstractFramedStreamSourceChannel;
            checkcast io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel
            astore 2 /* frame */
        start local 2 // io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel frame
         1: .line 113
            aload 2 /* frame */
            ifnonnull 3
         2: .line 114
            return
         3: .line 116
      StackMap locals: io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel
      StackMap stack:
            aload 2 /* frame */
            instanceof io.undertow.protocols.http2.Http2StreamSourceChannel
            ifeq 13
         4: .line 118
            aload 0 /* this */
            aload 1 /* channel */
            aload 2 /* frame */
            checkcast io.undertow.protocols.http2.Http2StreamSourceChannel
            invokevirtual io.undertow.server.protocol.http2.Http2ReceiveListener.handleRequests:(Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2StreamSourceChannel;)V
        end local 2 // io.undertow.protocols.http2.AbstractHttp2StreamSourceChannel frame
         5: .line 122
            goto 13
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.protocols.http2.Http2Channel
      StackMap stack: java.io.IOException
         6: astore 2 /* e */
        start local 2 // java.io.IOException e
         7: .line 123
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            aload 2 /* e */
            invokeinterface io.undertow.UndertowLogger.ioException:(Ljava/io/IOException;)V
         8: .line 124
            aload 1 /* channel */
            invokestatic org.xnio.IoUtils.safeClose:(Ljava/io/Closeable;)V
        end local 2 // java.io.IOException e
         9: goto 13
        10: .line 125
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2 /* t */
        start local 2 // java.lang.Throwable t
        11: .line 126
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            aload 2 /* t */
            invokeinterface io.undertow.UndertowLogger.handleUnexpectedFailure:(Ljava/lang/Throwable;)V
        12: .line 127
            aload 1 /* channel */
            invokestatic org.xnio.IoUtils.safeClose:(Ljava/io/Closeable;)V
        end local 2 // java.lang.Throwable t
        13: .line 129
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.undertow.protocols.http2.Http2Channel channel
        end local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            0   14     1  channel  Lio/undertow/protocols/http2/Http2Channel;
            1    5     2    frame  Lio/undertow/protocols/http2/AbstractHttp2StreamSourceChannel;
            7    9     2        e  Ljava/io/IOException;
           11   13     2        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     2       6  Class java.io.IOException
           3     5       6  Class java.io.IOException
           0     2      10  Class java.lang.Throwable
           3     5      10  Class java.lang.Throwable
    MethodParameters:
         Name  Flags
      channel  

  private void handleRequests(io.undertow.protocols.http2.Http2Channel, io.undertow.protocols.http2.Http2StreamSourceChannel);
    descriptor: (Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2StreamSourceChannel;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=9, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
        start local 1 // io.undertow.protocols.http2.Http2Channel channel
        start local 2 // io.undertow.protocols.http2.Http2StreamSourceChannel frame
         0: .line 133
            aload 2 /* frame */
            astore 3 /* dataChannel */
        start local 3 // io.undertow.protocols.http2.Http2StreamSourceChannel dataChannel
         1: .line 134
            new io.undertow.server.protocol.http2.Http2ServerConnection
            dup
            aload 1 /* channel */
            aload 3 /* dataChannel */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.undertowOptions:Lorg/xnio/OptionMap;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.bufferSize:I
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.rootHandler:Lio/undertow/server/HttpHandler;
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection.<init>:(Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2StreamSourceChannel;Lorg/xnio/OptionMap;ILio/undertow/server/HttpHandler;)V
            astore 4 /* connection */
        start local 4 // io.undertow.server.protocol.http2.Http2ServerConnection connection
         2: .line 137
            aload 0 /* this */
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getHeaders:()Lio/undertow/util/HeaderMap;
            invokevirtual io.undertow.server.protocol.http2.Http2ReceiveListener.checkRequestHeaders:(Lio/undertow/util/HeaderMap;)Z
            ifne 8
         3: .line 138
            aload 1 /* channel */
            aload 2 /* frame */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getStreamId:()I
            iconst_1
            invokevirtual io.undertow.protocols.http2.Http2Channel.sendRstStream:(II)V
         4: .line 140
            aload 2 /* frame */
            ldc 9223372036854775807
            invokestatic org.xnio.channels.Channels.drain:(Lorg/xnio/channels/StreamSourceChannel;J)J
            pop2
         5: .line 141
            goto 7
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.protocols.http2.Http2Channel io.undertow.protocols.http2.Http2StreamSourceChannel io.undertow.protocols.http2.Http2StreamSourceChannel io.undertow.server.protocol.http2.Http2ServerConnection
      StackMap stack: java.io.IOException
         6: pop
         7: .line 144
      StackMap locals:
      StackMap stack:
            return
         8: .line 148
      StackMap locals:
      StackMap stack:
            new io.undertow.server.HttpServerExchange
            dup
            aload 4 /* connection */
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getHeaders:()Lio/undertow/util/HeaderMap;
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getResponseChannel:()Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.getHeaders:()Lio/undertow/util/HeaderMap;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxEntitySize:J
            invokespecial io.undertow.server.HttpServerExchange.<init>:(Lio/undertow/server/ServerConnection;Lio/undertow/util/HeaderMap;Lio/undertow/util/HeaderMap;J)V
            astore 5 /* exchange */
        start local 5 // io.undertow.server.HttpServerExchange exchange
         9: .line 149
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getResponseChannel:()Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            new io.undertow.server.protocol.http2.Http2ReceiveListener$1
            dup
            aload 0 /* this */
            aload 5 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$1.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.setTrailersProducer:(Lio/undertow/protocols/http2/Http2DataStreamSinkChannel$TrailersProducer;)V
        10: .line 155
            aload 3 /* dataChannel */
            new io.undertow.server.protocol.http2.Http2ReceiveListener$2
            dup
            aload 0 /* this */
            aload 5 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$2.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.setTrailersHandler:(Lio/undertow/protocols/http2/Http2StreamSourceChannel$TrailersHandler;)V
        11: .line 161
            aload 4 /* connection */
            aload 5 /* exchange */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.setExchange:(Lio/undertow/server/HttpServerExchange;)V
        12: .line 162
            aload 3 /* dataChannel */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxEntitySize:J
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.setMaxStreamSize:(J)V
        13: .line 163
            aload 5 /* exchange */
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestScheme:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        14: .line 164
            aload 5 /* exchange */
            getstatic io.undertow.util.Protocols.HTTP_2_0:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.server.HttpServerExchange.setProtocol:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        15: .line 165
            aload 5 /* exchange */
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            invokestatic io.undertow.util.Methods.fromString:(Ljava/lang/String;)Lio/undertow/util/HttpString;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestMethod:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        16: .line 166
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.util.Headers.HOST:Lio/undertow/util/HttpString;
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.AUTHORITY:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            invokevirtual io.undertow.util.HeaderMap.put:(Lio/undertow/util/HttpString;Ljava/lang/String;)Lio/undertow/util/HeaderMap;
            pop
        17: .line 167
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            invokestatic io.undertow.server.Connectors.areRequestHeadersValid:(Lio/undertow/util/HeaderMap;)Z
            ifne 21
        18: .line 168
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            ldc "Invalid headers in HTTP/2 request, closing connection. Remote peer %s"
            aload 4 /* connection */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getPeerAddress:()Ljava/net/SocketAddress;
            invokeinterface io.undertow.UndertowLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
        19: .line 169
            aload 1 /* channel */
            iconst_1
            invokevirtual io.undertow.protocols.http2.Http2Channel.sendGoAway:(I)V
        20: .line 170
            return
        21: .line 173
      StackMap locals: io.undertow.server.HttpServerExchange
      StackMap stack:
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 6 /* path */
        start local 6 // java.lang.String path
        22: .line 174
            aload 6 /* path */
            ifnull 23
            aload 6 /* path */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 26
        23: .line 175
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            ldc "No :path header sent in HTTP/2 request, closing connection. Remote peer %s"
            aload 4 /* connection */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getPeerAddress:()Ljava/net/SocketAddress;
            invokeinterface io.undertow.UndertowLogger.debugf:(Ljava/lang/String;Ljava/lang/Object;)V
        24: .line 176
            aload 1 /* channel */
            iconst_1
            invokevirtual io.undertow.protocols.http2.Http2Channel.sendGoAway:(I)V
        25: .line 177
            return
        26: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.recordRequestStartTime:Z
            ifeq 28
        27: .line 181
            aload 5 /* exchange */
            invokestatic io.undertow.server.Connectors.setRequestStartTime:(Lio/undertow/server/HttpServerExchange;)V
        28: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* channel */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            astore 7 /* session */
        start local 7 // javax.net.ssl.SSLSession session
        29: .line 184
            aload 7 /* session */
            ifnull 31
        30: .line 185
            aload 4 /* connection */
            new io.undertow.server.protocol.http2.Http2SslSessionInfo
            dup
            aload 1 /* channel */
            invokespecial io.undertow.server.protocol.http2.Http2SslSessionInfo.<init>:(Lio/undertow/protocols/http2/Http2Channel;)V
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.setSslSessionInfo:(Lio/undertow/server/SSLSessionInfo;)V
        31: .line 187
      StackMap locals: javax.net.ssl.SSLSession
      StackMap stack:
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getResponseChannel:()Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            new io.undertow.server.protocol.http2.Http2ReceiveListener$3
            dup
            aload 0 /* this */
            aload 5 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$3.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.setCompletionListener:(Lorg/xnio/ChannelListener;)V
        32: .line 193
            aload 3 /* dataChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.isOpen:()Z
            ifne 35
        33: .line 194
            aload 5 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        34: .line 195
            goto 36
        35: .line 196
      StackMap locals:
      StackMap stack:
            aload 3 /* dataChannel */
            new io.undertow.server.protocol.http2.Http2ReceiveListener$4
            dup
            aload 0 /* this */
            aload 5 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$4.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.setCompletionListener:(Lorg/xnio/ChannelListener;)V
        36: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.connectorStatistics:Lio/undertow/server/ConnectorStatisticsImpl;
            ifnull 38
        37: .line 204
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.connectorStatistics:Lio/undertow/server/ConnectorStatisticsImpl;
            aload 5 /* exchange */
            invokevirtual io.undertow.server.ConnectorStatisticsImpl.setup:(Lio/undertow/server/HttpServerExchange;)V
        38: .line 208
      StackMap locals:
      StackMap stack:
            aload 5 /* exchange */
            aload 6 /* path */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.encoding:Ljava/lang/String;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.decode:Z
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.allowEncodingSlash:Z
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.decodeBuffer:Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxParameters:I
            invokestatic io.undertow.server.Connectors.setExchangeRequestPath:(Lio/undertow/server/HttpServerExchange;Ljava/lang/String;Ljava/lang/String;ZZLjava/lang/StringBuilder;I)V
        39: .line 209
            goto 45
      StackMap locals:
      StackMap stack: io.undertow.util.ParameterLimitException
        40: astore 8 /* e */
        start local 8 // io.undertow.util.ParameterLimitException e
        41: .line 211
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            ldc "Failed to set request path"
            aload 8 /* e */
            invokeinterface io.undertow.UndertowLogger.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        42: .line 212
            aload 5 /* exchange */
            sipush 400
            invokevirtual io.undertow.server.HttpServerExchange.setStatusCode:(I)Lio/undertow/server/HttpServerExchange;
            pop
        43: .line 213
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.endExchange:()Lio/undertow/server/HttpServerExchange;
            pop
        44: .line 214
            return
        end local 8 // io.undertow.util.ParameterLimitException e
        45: .line 218
      StackMap locals:
      StackMap stack:
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.AUTHORITY:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        46: .line 219
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        47: .line 220
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        48: .line 221
            aload 5 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        49: .line 224
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.rootHandler:Lio/undertow/server/HttpHandler;
            aload 5 /* exchange */
            invokestatic io.undertow.server.Connectors.executeRootHandler:(Lio/undertow/server/HttpHandler;Lio/undertow/server/HttpServerExchange;)V
        50: .line 225
            return
        end local 7 // javax.net.ssl.SSLSession session
        end local 6 // java.lang.String path
        end local 5 // io.undertow.server.HttpServerExchange exchange
        end local 4 // io.undertow.server.protocol.http2.Http2ServerConnection connection
        end local 3 // io.undertow.protocols.http2.Http2StreamSourceChannel dataChannel
        end local 2 // io.undertow.protocols.http2.Http2StreamSourceChannel frame
        end local 1 // io.undertow.protocols.http2.Http2Channel channel
        end local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   51     0         this  Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            0   51     1      channel  Lio/undertow/protocols/http2/Http2Channel;
            0   51     2        frame  Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            1   51     3  dataChannel  Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            2   51     4   connection  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            9   51     5     exchange  Lio/undertow/server/HttpServerExchange;
           22   51     6         path  Ljava/lang/String;
           29   51     7      session  Ljavax/net/ssl/SSLSession;
           41   45     8            e  Lio/undertow/util/ParameterLimitException;
      Exception table:
        from    to  target  type
           4     5       6  Class java.io.IOException
          38    39      40  Class io.undertow.util.ParameterLimitException
    MethodParameters:
         Name  Flags
      channel  
      frame    

  void handleInitialRequest(io.undertow.server.HttpServerExchange, io.undertow.protocols.http2.Http2Channel, byte[]);
    descriptor: (Lio/undertow/server/HttpServerExchange;Lio/undertow/protocols/http2/Http2Channel;[B)V
    flags: (0x0000) 
    Code:
      stack=7, locals=10, args_size=4
        start local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
        start local 1 // io.undertow.server.HttpServerExchange initial
        start local 2 // io.undertow.protocols.http2.Http2Channel channel
        start local 3 // byte[] data
         0: .line 236
            aload 2 /* channel */
            invokevirtual io.undertow.protocols.http2.Http2Channel.createInitialUpgradeResponseStream:()Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            astore 4 /* sink */
        start local 4 // io.undertow.protocols.http2.Http2HeadersStreamSinkChannel sink
         1: .line 237
            new io.undertow.server.protocol.http2.Http2ServerConnection
            dup
            aload 2 /* channel */
            aload 4 /* sink */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.undertowOptions:Lorg/xnio/OptionMap;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.bufferSize:I
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.rootHandler:Lio/undertow/server/HttpHandler;
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection.<init>:(Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;Lorg/xnio/OptionMap;ILio/undertow/server/HttpHandler;)V
            astore 5 /* connection */
        start local 5 // io.undertow.server.protocol.http2.Http2ServerConnection connection
         2: .line 240
            new io.undertow.util.HeaderMap
            dup
            invokespecial io.undertow.util.HeaderMap.<init>:()V
            astore 6 /* requestHeaders */
        start local 6 // io.undertow.util.HeaderMap requestHeaders
         3: .line 241
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            invokevirtual io.undertow.util.HeaderMap.iterator:()Ljava/util/Iterator;
            astore 8
            goto 6
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.server.HttpServerExchange io.undertow.protocols.http2.Http2Channel byte[] io.undertow.protocols.http2.Http2HeadersStreamSinkChannel io.undertow.server.protocol.http2.Http2ServerConnection io.undertow.util.HeaderMap top java.util.Iterator
      StackMap stack:
         4: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.undertow.util.HeaderValues
            astore 7 /* hv */
        start local 7 // io.undertow.util.HeaderValues hv
         5: .line 242
            aload 6 /* requestHeaders */
            aload 7 /* hv */
            invokevirtual io.undertow.util.HeaderValues.getHeaderName:()Lio/undertow/util/HttpString;
            aload 7 /* hv */
            invokevirtual io.undertow.util.HeaderMap.putAll:(Lio/undertow/util/HttpString;Ljava/util/Collection;)Lio/undertow/util/HeaderMap;
            pop
        end local 7 // io.undertow.util.HeaderValues hv
         6: .line 241
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 244
            new io.undertow.server.HttpServerExchange
            dup
            aload 5 /* connection */
            aload 6 /* requestHeaders */
            aload 4 /* sink */
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.getHeaders:()Lio/undertow/util/HeaderMap;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxEntitySize:J
            invokespecial io.undertow.server.HttpServerExchange.<init>:(Lio/undertow/server/ServerConnection;Lio/undertow/util/HeaderMap;Lio/undertow/util/HeaderMap;J)V
            astore 7 /* exchange */
        start local 7 // io.undertow.server.HttpServerExchange exchange
         8: .line 245
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.util.Headers.EXPECT:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifeq 10
         9: .line 246
            aload 7 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpContinue.markContinueResponseSent:(Lio/undertow/server/HttpServerExchange;)V
        10: .line 248
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.server.HttpServerExchange io.undertow.protocols.http2.Http2Channel byte[] io.undertow.protocols.http2.Http2HeadersStreamSinkChannel io.undertow.server.protocol.http2.Http2ServerConnection io.undertow.util.HeaderMap io.undertow.server.HttpServerExchange
      StackMap stack:
            aload 1 /* initial */
            getstatic io.undertow.server.protocol.http.HttpAttachments.REQUEST_TRAILERS:Lio/undertow/util/AttachmentKey;
            invokevirtual io.undertow.server.HttpServerExchange.getAttachment:(Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
            ifnull 12
        11: .line 249
            aload 7 /* exchange */
            getstatic io.undertow.server.protocol.http.HttpAttachments.REQUEST_TRAILERS:Lio/undertow/util/AttachmentKey;
            aload 1 /* initial */
            getstatic io.undertow.server.protocol.http.HttpAttachments.REQUEST_TRAILERS:Lio/undertow/util/AttachmentKey;
            invokevirtual io.undertow.server.HttpServerExchange.getAttachment:(Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
            checkcast io.undertow.util.HeaderMap
            invokevirtual io.undertow.server.HttpServerExchange.putAttachment:(Lio/undertow/util/AttachmentKey;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        12: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* initial */
            aload 7 /* exchange */
            invokestatic io.undertow.server.Connectors.setRequestStartTime:(Lio/undertow/server/HttpServerExchange;Lio/undertow/server/HttpServerExchange;)V
        13: .line 252
            aload 5 /* connection */
            aload 7 /* exchange */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.setExchange:(Lio/undertow/server/HttpServerExchange;)V
        14: .line 253
            aload 7 /* exchange */
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestScheme:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestScheme:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        15: .line 254
            aload 7 /* exchange */
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getProtocol:()Lio/undertow/util/HttpString;
            invokevirtual io.undertow.server.HttpServerExchange.setProtocol:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        16: .line 255
            aload 7 /* exchange */
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestMethod:()Lio/undertow/util/HttpString;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestMethod:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        17: .line 256
            aload 7 /* exchange */
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getQueryString:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setQueryString:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        18: .line 257
            aload 3 /* data */
            ifnull 21
        19: .line 258
            aload 7 /* exchange */
            iconst_1
            anewarray io.undertow.connector.PooledByteBuffer
            dup
            iconst_0
            new io.undertow.util.ImmediatePooledByteBuffer
            dup
            aload 3 /* data */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokespecial io.undertow.util.ImmediatePooledByteBuffer.<init>:(Ljava/nio/ByteBuffer;)V
            aastore
            invokestatic io.undertow.server.Connectors.ungetRequestBytes:(Lio/undertow/server/HttpServerExchange;[Lio/undertow/connector/PooledByteBuffer;)V
        20: .line 259
            goto 22
        21: .line 260
      StackMap locals:
      StackMap stack:
            aload 7 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        22: .line 262
      StackMap locals:
      StackMap stack:
            aload 7 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getQueryString:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 23
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestURI:()Ljava/lang/String;
            goto 24
      StackMap locals:
      StackMap stack:
        23: new java.lang.StringBuilder
            dup
            aload 1 /* initial */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestURI:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 63
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 7 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getQueryString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
        24: astore 8 /* uri */
        start local 8 // java.lang.String uri
        25: .line 264
            aload 7 /* exchange */
            aload 8 /* uri */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.encoding:Ljava/lang/String;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.decode:Z
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.allowEncodingSlash:Z
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.decodeBuffer:Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.maxParameters:I
            invokestatic io.undertow.server.Connectors.setExchangeRequestPath:(Lio/undertow/server/HttpServerExchange;Ljava/lang/String;Ljava/lang/String;ZZLjava/lang/StringBuilder;I)V
        26: .line 265
            goto 31
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.server.HttpServerExchange io.undertow.protocols.http2.Http2Channel byte[] io.undertow.protocols.http2.Http2HeadersStreamSinkChannel io.undertow.server.protocol.http2.Http2ServerConnection io.undertow.util.HeaderMap io.undertow.server.HttpServerExchange java.lang.String
      StackMap stack: io.undertow.util.ParameterLimitException
        27: pop
        28: .line 266
            aload 7 /* exchange */
            sipush 400
            invokevirtual io.undertow.server.HttpServerExchange.setStatusCode:(I)Lio/undertow/server/HttpServerExchange;
            pop
        29: .line 267
            aload 7 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.endExchange:()Lio/undertow/server/HttpServerExchange;
            pop
        30: .line 268
            return
        31: .line 270
      StackMap locals:
      StackMap stack:
            aload 4 /* sink */
            new io.undertow.server.protocol.http2.Http2ReceiveListener$5
            dup
            aload 0 /* this */
            aload 7 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$5.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.setTrailersProducer:(Lio/undertow/protocols/http2/Http2DataStreamSinkChannel$TrailersProducer;)V
        32: .line 278
            aload 2 /* channel */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            astore 9 /* session */
        start local 9 // javax.net.ssl.SSLSession session
        33: .line 279
            aload 9 /* session */
            ifnull 35
        34: .line 280
            aload 5 /* connection */
            new io.undertow.server.protocol.http2.Http2SslSessionInfo
            dup
            aload 2 /* channel */
            invokespecial io.undertow.server.protocol.http2.Http2SslSessionInfo.<init>:(Lio/undertow/protocols/http2/Http2Channel;)V
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.setSslSessionInfo:(Lio/undertow/server/SSLSessionInfo;)V
        35: .line 282
      StackMap locals: javax.net.ssl.SSLSession
      StackMap stack:
            aload 4 /* sink */
            new io.undertow.server.protocol.http2.Http2ReceiveListener$6
            dup
            aload 0 /* this */
            aload 7 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ReceiveListener$6.<init>:(Lio/undertow/server/protocol/http2/Http2ReceiveListener;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.protocols.http2.Http2HeadersStreamSinkChannel.setCompletionListener:(Lorg/xnio/ChannelListener;)V
        36: .line 288
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ReceiveListener.rootHandler:Lio/undertow/server/HttpHandler;
            aload 7 /* exchange */
            invokestatic io.undertow.server.Connectors.executeRootHandler:(Lio/undertow/server/HttpHandler;Lio/undertow/server/HttpServerExchange;)V
        37: .line 289
            return
        end local 9 // javax.net.ssl.SSLSession session
        end local 8 // java.lang.String uri
        end local 7 // io.undertow.server.HttpServerExchange exchange
        end local 6 // io.undertow.util.HeaderMap requestHeaders
        end local 5 // io.undertow.server.protocol.http2.Http2ServerConnection connection
        end local 4 // io.undertow.protocols.http2.Http2HeadersStreamSinkChannel sink
        end local 3 // byte[] data
        end local 2 // io.undertow.protocols.http2.Http2Channel channel
        end local 1 // io.undertow.server.HttpServerExchange initial
        end local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   38     0            this  Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            0   38     1         initial  Lio/undertow/server/HttpServerExchange;
            0   38     2         channel  Lio/undertow/protocols/http2/Http2Channel;
            0   38     3            data  [B
            1   38     4            sink  Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            2   38     5      connection  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            3   38     6  requestHeaders  Lio/undertow/util/HeaderMap;
            5    6     7              hv  Lio/undertow/util/HeaderValues;
            8   38     7        exchange  Lio/undertow/server/HttpServerExchange;
           25   38     8             uri  Ljava/lang/String;
           33   38     9         session  Ljavax/net/ssl/SSLSession;
      Exception table:
        from    to  target  type
          25    26      27  Class io.undertow.util.ParameterLimitException
    MethodParameters:
         Name  Flags
      initial  
      channel  
      data     

  private boolean checkRequestHeaders(io.undertow.util.HeaderMap);
    descriptor: (Lio/undertow/util/HeaderMap;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
        start local 1 // io.undertow.util.HeaderMap headers
         0: .line 300
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.count:(Lio/undertow/util/HttpString;)I
            iconst_1
            if_icmpne 1
            aload 1 /* headers */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifeq 2
         1: .line 301
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 306
      StackMap locals:
      StackMap stack:
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.get:(Lio/undertow/util/HttpString;)Lio/undertow/util/HeaderValues;
            ldc "CONNECT"
            invokevirtual io.undertow.util.HeaderValues.contains:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 307
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifne 4
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifne 4
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.AUTHORITY:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.count:(Lio/undertow/util/HttpString;)I
            iconst_1
            if_icmpeq 7
         4: .line 308
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 312
      StackMap locals:
      StackMap stack:
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.count:(Lio/undertow/util/HttpString;)I
            iconst_1
            if_icmpne 6
            aload 1 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.count:(Lio/undertow/util/HttpString;)I
            iconst_1
            if_icmpeq 7
         6: .line 313
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         7: .line 317
      StackMap locals:
      StackMap stack:
            aload 1 /* headers */
            getstatic io.undertow.util.Headers.TE:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifeq 13
         8: .line 318
            aload 1 /* headers */
            getstatic io.undertow.util.Headers.TE:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.get:(Lio/undertow/util/HttpString;)Lio/undertow/util/HeaderValues;
            invokevirtual io.undertow.util.HeaderValues.iterator:()Ljava/util/Iterator;
            astore 3
            goto 12
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.util.HeaderMap top java.util.Iterator
      StackMap stack:
         9: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* value */
        start local 2 // java.lang.String value
        10: .line 319
            aload 2 /* value */
            ldc "trailers"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 12
        11: .line 320
            iconst_0
            ireturn
        end local 2 // java.lang.String value
        12: .line 318
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        13: .line 325
      StackMap locals: io.undertow.server.protocol.http2.Http2ReceiveListener io.undertow.util.HeaderMap
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // io.undertow.util.HeaderMap headers
        end local 0 // io.undertow.server.protocol.http2.Http2ReceiveListener this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/undertow/server/protocol/http2/Http2ReceiveListener;
            0   14     1  headers  Lio/undertow/util/HeaderMap;
           10   12     2    value  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      headers  

  public void handleEvent(java.nio.channels.Channel);
    descriptor: (Ljava/nio/channels/Channel;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.undertow.protocols.http2.Http2Channel
            invokevirtual io.undertow.server.protocol.http2.Http2ReceiveListener.handleEvent:(Lio/undertow/protocols/http2/Http2Channel;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lorg/xnio/ChannelListener<Lio/undertow/protocols/http2/Http2Channel;>;
SourceFile: "Http2ReceiveListener.java"
NestMembers:
  io.undertow.server.protocol.http2.Http2ReceiveListener$1  io.undertow.server.protocol.http2.Http2ReceiveListener$2  io.undertow.server.protocol.http2.Http2ReceiveListener$3  io.undertow.server.protocol.http2.Http2ReceiveListener$4  io.undertow.server.protocol.http2.Http2ReceiveListener$5  io.undertow.server.protocol.http2.Http2ReceiveListener$6
InnerClasses:
  public abstract TrailersProducer = io.undertow.protocols.http2.Http2DataStreamSinkChannel$TrailersProducer of io.undertow.protocols.http2.Http2DataStreamSinkChannel
  public abstract TrailersHandler = io.undertow.protocols.http2.Http2StreamSourceChannel$TrailersHandler of io.undertow.protocols.http2.Http2StreamSourceChannel
  io.undertow.server.protocol.http2.Http2ReceiveListener$1
  io.undertow.server.protocol.http2.Http2ReceiveListener$2
  io.undertow.server.protocol.http2.Http2ReceiveListener$3
  io.undertow.server.protocol.http2.Http2ReceiveListener$4
  io.undertow.server.protocol.http2.Http2ReceiveListener$5
  io.undertow.server.protocol.http2.Http2ReceiveListener$6