public class io.undertow.server.protocol.http2.Http2ServerConnection extends io.undertow.server.ServerConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.server.protocol.http2.Http2ServerConnection
  super_class: io.undertow.server.ServerConnection
{
  private static final io.undertow.util.HttpString STATUS;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final io.undertow.protocols.http2.Http2Channel channel;
    descriptor: Lio/undertow/protocols/http2/Http2Channel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.undertow.protocols.http2.Http2StreamSourceChannel requestChannel;
    descriptor: Lio/undertow/protocols/http2/Http2StreamSourceChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.undertow.protocols.http2.Http2DataStreamSinkChannel responseChannel;
    descriptor: Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.conduits.ConduitStreamSinkChannel conduitStreamSinkChannel;
    descriptor: Lorg/xnio/conduits/ConduitStreamSinkChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.conduits.ConduitStreamSourceChannel conduitStreamSourceChannel;
    descriptor: Lorg/xnio/conduits/ConduitStreamSourceChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.conduits.StreamSinkConduit originalSinkConduit;
    descriptor: Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.conduits.StreamSourceConduit originalSourceConduit;
    descriptor: Lorg/xnio/conduits/StreamSourceConduit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private io.undertow.server.SSLSessionInfo sessionInfo;
    descriptor: Lio/undertow/server/SSLSessionInfo;
    flags: (0x0002) ACC_PRIVATE

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

  private io.undertow.server.HttpServerExchange exchange;
    descriptor: Lio/undertow/server/HttpServerExchange;
    flags: (0x0002) ACC_PRIVATE

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

  private io.undertow.server.XnioBufferPoolAdaptor poolAdaptor;
    descriptor: Lio/undertow/server/XnioBufferPoolAdaptor;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 85
            new io.undertow.util.HttpString
            dup
            ldc ":status"
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            putstatic io.undertow.server.protocol.http2.Http2ServerConnection.STATUS:Lio/undertow/util/HttpString;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.undertow.protocols.http2.Http2Channel, io.undertow.protocols.http2.Http2StreamSourceChannel, org.xnio.OptionMap, int, io.undertow.server.HttpHandler);
    descriptor: (Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2StreamSourceChannel;Lorg/xnio/OptionMap;ILio/undertow/server/HttpHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.protocols.http2.Http2Channel channel
        start local 2 // io.undertow.protocols.http2.Http2StreamSourceChannel requestChannel
        start local 3 // org.xnio.OptionMap undertowOptions
        start local 4 // int bufferSize
        start local 5 // io.undertow.server.HttpHandler rootHandler
         0: .line 102
            aload 0 /* this */
            invokespecial io.undertow.server.ServerConnection.<init>:()V
         1: .line 99
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.continueSent:Z
         2: .line 103
            aload 0 /* this */
            aload 1 /* channel */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
         3: .line 104
            aload 0 /* this */
            aload 2 /* requestChannel */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
         4: .line 105
            aload 0 /* this */
            aload 3 /* undertowOptions */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.undertowOptions:Lorg/xnio/OptionMap;
         5: .line 106
            aload 0 /* this */
            iload 4 /* bufferSize */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.bufferSize:I
         6: .line 107
            aload 0 /* this */
            aload 5 /* rootHandler */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.rootHandler:Lio/undertow/server/HttpHandler;
         7: .line 108
            aload 0 /* this */
            aload 2 /* requestChannel */
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getResponseChannel:()Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
         8: .line 109
            aload 0 /* this */
            new org.xnio.conduits.StreamSinkChannelWrappingConduit
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            invokespecial org.xnio.conduits.StreamSinkChannelWrappingConduit.<init>:(Lorg/xnio/channels/StreamSinkChannel;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSinkConduit:Lorg/xnio/conduits/StreamSinkConduit;
         9: .line 110
            aload 0 /* this */
            new org.xnio.conduits.StreamSourceChannelWrappingConduit
            dup
            aload 2 /* requestChannel */
            invokespecial org.xnio.conduits.StreamSourceChannelWrappingConduit.<init>:(Lorg/xnio/channels/StreamSourceChannel;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSourceConduit:Lorg/xnio/conduits/StreamSourceConduit;
        10: .line 111
            aload 0 /* this */
            new org.xnio.conduits.ConduitStreamSinkChannel
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSinkConduit:Lorg/xnio/conduits/StreamSinkConduit;
            invokespecial org.xnio.conduits.ConduitStreamSinkChannel.<init>:(Lorg/xnio/channels/Configurable;Lorg/xnio/conduits/StreamSinkConduit;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSinkChannel:Lorg/xnio/conduits/ConduitStreamSinkChannel;
        11: .line 112
            aload 0 /* this */
            new org.xnio.conduits.ConduitStreamSourceChannel
            dup
            aload 1 /* channel */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSourceConduit:Lorg/xnio/conduits/StreamSourceConduit;
            invokespecial org.xnio.conduits.ConduitStreamSourceChannel.<init>:(Lorg/xnio/channels/Configurable;Lorg/xnio/conduits/StreamSourceConduit;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSourceChannel:Lorg/xnio/conduits/ConduitStreamSourceChannel;
        12: .line 113
            return
        end local 5 // io.undertow.server.HttpHandler rootHandler
        end local 4 // int bufferSize
        end local 3 // org.xnio.OptionMap undertowOptions
        end local 2 // io.undertow.protocols.http2.Http2StreamSourceChannel requestChannel
        end local 1 // io.undertow.protocols.http2.Http2Channel channel
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0   13     1          channel  Lio/undertow/protocols/http2/Http2Channel;
            0   13     2   requestChannel  Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            0   13     3  undertowOptions  Lorg/xnio/OptionMap;
            0   13     4       bufferSize  I
            0   13     5      rootHandler  Lio/undertow/server/HttpHandler;
    MethodParameters:
                 Name  Flags
      channel          
      requestChannel   
      undertowOptions  
      bufferSize       
      rootHandler      

  void setExchange(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 116
            aload 0 /* this */
            aload 1 /* exchange */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.exchange:Lio/undertow/server/HttpServerExchange;
         1: .line 117
            return
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    2     1  exchange  Lio/undertow/server/HttpServerExchange;
    MethodParameters:
          Name  Flags
      exchange  

  public void <init>(io.undertow.protocols.http2.Http2Channel, io.undertow.protocols.http2.Http2DataStreamSinkChannel, org.xnio.OptionMap, int, io.undertow.server.HttpHandler);
    descriptor: (Lio/undertow/protocols/http2/Http2Channel;Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;Lorg/xnio/OptionMap;ILio/undertow/server/HttpHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.protocols.http2.Http2Channel channel
        start local 2 // io.undertow.protocols.http2.Http2DataStreamSinkChannel sinkChannel
        start local 3 // org.xnio.OptionMap undertowOptions
        start local 4 // int bufferSize
        start local 5 // io.undertow.server.HttpHandler rootHandler
         0: .line 126
            aload 0 /* this */
            invokespecial io.undertow.server.ServerConnection.<init>:()V
         1: .line 99
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.continueSent:Z
         2: .line 127
            aload 0 /* this */
            aload 1 /* channel */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
         3: .line 128
            aload 0 /* this */
            aload 5 /* rootHandler */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.rootHandler:Lio/undertow/server/HttpHandler;
         4: .line 129
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
         5: .line 130
            aload 0 /* this */
            aload 3 /* undertowOptions */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.undertowOptions:Lorg/xnio/OptionMap;
         6: .line 131
            aload 0 /* this */
            iload 4 /* bufferSize */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.bufferSize:I
         7: .line 132
            aload 0 /* this */
            aload 2 /* sinkChannel */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
         8: .line 133
            aload 0 /* this */
            new org.xnio.conduits.StreamSinkChannelWrappingConduit
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            invokespecial org.xnio.conduits.StreamSinkChannelWrappingConduit.<init>:(Lorg/xnio/channels/StreamSinkChannel;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSinkConduit:Lorg/xnio/conduits/StreamSinkConduit;
         9: .line 134
            aload 0 /* this */
            new org.xnio.conduits.StreamSourceChannelWrappingConduit
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            invokespecial org.xnio.conduits.StreamSourceChannelWrappingConduit.<init>:(Lorg/xnio/channels/StreamSourceChannel;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSourceConduit:Lorg/xnio/conduits/StreamSourceConduit;
        10: .line 135
            aload 0 /* this */
            new org.xnio.conduits.ConduitStreamSinkChannel
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSinkConduit:Lorg/xnio/conduits/StreamSinkConduit;
            invokespecial org.xnio.conduits.ConduitStreamSinkChannel.<init>:(Lorg/xnio/channels/Configurable;Lorg/xnio/conduits/StreamSinkConduit;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSinkChannel:Lorg/xnio/conduits/ConduitStreamSinkChannel;
        11: .line 136
            aload 0 /* this */
            new org.xnio.conduits.ConduitStreamSourceChannel
            dup
            getstatic org.xnio.channels.Configurable.EMPTY:Lorg/xnio/channels/Configurable;
            new org.xnio.conduits.EmptyStreamSourceConduit
            dup
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getIoThread:()Lorg/xnio/XnioIoThread;
            invokespecial org.xnio.conduits.EmptyStreamSourceConduit.<init>:(Lorg/xnio/XnioIoThread;)V
            invokespecial org.xnio.conduits.ConduitStreamSourceChannel.<init>:(Lorg/xnio/channels/Configurable;Lorg/xnio/conduits/StreamSourceConduit;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSourceChannel:Lorg/xnio/conduits/ConduitStreamSourceChannel;
        12: .line 137
            return
        end local 5 // io.undertow.server.HttpHandler rootHandler
        end local 4 // int bufferSize
        end local 3 // org.xnio.OptionMap undertowOptions
        end local 2 // io.undertow.protocols.http2.Http2DataStreamSinkChannel sinkChannel
        end local 1 // io.undertow.protocols.http2.Http2Channel channel
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0   13     1          channel  Lio/undertow/protocols/http2/Http2Channel;
            0   13     2      sinkChannel  Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            0   13     3  undertowOptions  Lorg/xnio/OptionMap;
            0   13     4       bufferSize  I
            0   13     5      rootHandler  Lio/undertow/server/HttpHandler;
    MethodParameters:
                 Name  Flags
      channel          
      sinkChannel      
      undertowOptions  
      bufferSize       
      rootHandler      

  public org.xnio.Pool<java.nio.ByteBuffer> getBufferPool();
    descriptor: ()Lorg/xnio/Pool;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 140
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.poolAdaptor:Lio/undertow/server/XnioBufferPoolAdaptor;
            ifnonnull 2
         1: .line 141
            aload 0 /* this */
            new io.undertow.server.XnioBufferPoolAdaptor
            dup
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getByteBufferPool:()Lio/undertow/connector/ByteBufferPool;
            invokespecial io.undertow.server.XnioBufferPoolAdaptor.<init>:(Lio/undertow/connector/ByteBufferPool;)V
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.poolAdaptor:Lio/undertow/server/XnioBufferPoolAdaptor;
         2: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.poolAdaptor:Lio/undertow/server/XnioBufferPoolAdaptor;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
    Signature: ()Lorg/xnio/Pool<Ljava/nio/ByteBuffer;>;

  public javax.net.ssl.SSLSession getSslSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 147
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public io.undertow.connector.ByteBufferPool getByteBufferPool();
    descriptor: ()Lio/undertow/connector/ByteBufferPool;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 152
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getBufferPool:()Lio/undertow/connector/ByteBufferPool;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public org.xnio.XnioWorker getWorker();
    descriptor: ()Lorg/xnio/XnioWorker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 157
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getWorker:()Lorg/xnio/XnioWorker;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public org.xnio.XnioIoThread getIoThread();
    descriptor: ()Lorg/xnio/XnioIoThread;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 162
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getIoThread:()Lorg/xnio/XnioIoThread;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public io.undertow.server.HttpServerExchange sendOutOfBandResponse(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/server/HttpServerExchange;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 168
            aload 1 /* exchange */
            ifnull 1
            aload 1 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpContinue.requiresContinueResponse:(Lio/undertow/server/HttpServerExchange;)Z
            ifne 2
         1: .line 169
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.outOfBandResponseOnlyAllowedFor100Continue:()Ljava/lang/IllegalArgumentException;
            athrow
         2: .line 171
      StackMap locals:
      StackMap stack:
            new io.undertow.server.HttpServerExchange
            dup
            aload 0 /* this */
            invokespecial io.undertow.server.HttpServerExchange.<init>:(Lio/undertow/server/ServerConnection;)V
            astore 2 /* newExchange */
        start local 2 // io.undertow.server.HttpServerExchange newExchange
         3: .line 172
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            invokevirtual io.undertow.util.HeaderMap.getHeaderNames:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 6
      StackMap locals: io.undertow.server.protocol.http2.Http2ServerConnection io.undertow.server.HttpServerExchange io.undertow.server.HttpServerExchange top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.undertow.util.HttpString
            astore 3 /* header */
        start local 3 // io.undertow.util.HttpString header
         5: .line 173
            aload 2 /* newExchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            aload 3 /* header */
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            aload 3 /* header */
            invokevirtual io.undertow.util.HeaderMap.get:(Lio/undertow/util/HttpString;)Lio/undertow/util/HeaderValues;
            invokevirtual io.undertow.util.HeaderMap.putAll:(Lio/undertow/util/HttpString;Ljava/util/Collection;)Lio/undertow/util/HeaderMap;
            pop
        end local 3 // io.undertow.util.HttpString header
         6: .line 172
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 175
            aload 2 /* newExchange */
            aload 1 /* exchange */
            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
         8: .line 176
            aload 2 /* newExchange */
            aload 1 /* exchange */
            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
         9: .line 177
            aload 1 /* exchange */
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestURI:()Ljava/lang/String;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isHostIncludedInRequestURI:()Z
            invokevirtual io.undertow.server.HttpServerExchange.setRequestURI:(Ljava/lang/String;Z)Lio/undertow/server/HttpServerExchange;
            pop
        10: .line 178
            aload 1 /* exchange */
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestPath:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestPath:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        11: .line 179
            aload 1 /* exchange */
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRelativePath:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRelativePath:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        12: .line 180
            aload 2 /* newExchange */
            iconst_1
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        13: .line 182
            aload 2 /* newExchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        14: .line 183
            aload 2 /* newExchange */
            new io.undertow.server.protocol.http2.Http2ServerConnection$1
            dup
            aload 0 /* this */
            aload 2 /* newExchange */
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection$1.<init>:(Lio/undertow/server/protocol/http2/Http2ServerConnection;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual io.undertow.server.HttpServerExchange.addResponseWrapper:(Lio/undertow/server/ConduitWrapper;)Lio/undertow/server/HttpServerExchange;
            pop
        15: .line 198
            aload 0 /* this */
            iconst_1
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.continueSent:Z
        16: .line 199
            aload 2 /* newExchange */
            areturn
        end local 2 // io.undertow.server.HttpServerExchange newExchange
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0   17     1     exchange  Lio/undertow/server/HttpServerExchange;
            3   17     2  newExchange  Lio/undertow/server/HttpServerExchange;
            5    6     3       header  Lio/undertow/util/HttpString;
    MethodParameters:
          Name  Flags
      exchange  

  public boolean isContinueResponseSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 205
            iconst_1
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public void terminateRequestChannel(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 210
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            invokestatic io.undertow.server.protocol.http.HttpContinue.requiresContinueResponse:(Lio/undertow/util/HeaderMap;)Z
            ifeq 5
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.continueSent:Z
            ifne 5
         1: .line 211
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            ifnull 5
         2: .line 212
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            iconst_1
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.setIgnoreForceClose:(Z)V
         3: .line 213
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.close:()V
         4: .line 216
            aload 1 /* exchange */
            new io.undertow.server.protocol.http2.Http2ServerConnection$2
            dup
            aload 0 /* this */
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection$2.<init>:(Lio/undertow/server/protocol/http2/Http2ServerConnection;)V
            invokevirtual io.undertow.server.HttpServerExchange.addExchangeCompleteListener:(Lio/undertow/server/ExchangeCompletionListener;)Lio/undertow/server/HttpServerExchange;
            pop
         5: .line 228
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    6     1  exchange  Lio/undertow/server/HttpServerExchange;
    MethodParameters:
          Name  Flags
      exchange  

  public boolean isOpen();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 232
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.isOpen:()Z
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public boolean supportsOption(org.xnio.Option<?>);
    descriptor: (Lorg/xnio/Option;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // org.xnio.Option option
         0: .line 237
            iconst_0
            ireturn
        end local 1 // org.xnio.Option option
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  option  Lorg/xnio/Option<*>;
    Signature: (Lorg/xnio/Option<*>;)Z
    MethodParameters:
        Name  Flags
      option  

  public <T> T getOption(org.xnio.Option<T>);
    descriptor: (Lorg/xnio/Option;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // org.xnio.Option option
         0: .line 242
            aconst_null
            areturn
        end local 1 // org.xnio.Option option
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  option  Lorg/xnio/Option<TT;>;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Lorg/xnio/Option<TT;>;)TT;
    MethodParameters:
        Name  Flags
      option  

  public <T> T setOption(org.xnio.Option<T>, );
    descriptor: (Lorg/xnio/Option;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // org.xnio.Option option
        start local 2 // java.lang.Object value
         0: .line 247
            aconst_null
            areturn
        end local 2 // java.lang.Object value
        end local 1 // org.xnio.Option option
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  option  Lorg/xnio/Option<TT;>;
            0    1     2   value  TT;
    Exceptions:
      throws java.lang.IllegalArgumentException, java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Lorg/xnio/Option<TT;>;TT;)TT;
    MethodParameters:
        Name  Flags
      option  
      value   

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 252
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.getStreamId:()I
            bipush 8
            invokevirtual io.undertow.protocols.http2.Http2Channel.sendRstStream:(II)V
         1: .line 253
            return
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
    Exceptions:
      throws java.io.IOException

  public java.net.SocketAddress getPeerAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 257
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getPeerAddress:()Ljava/net/SocketAddress;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public <A extends java.net.SocketAddress> A getPeerAddress(java.lang.Class<A>);
    descriptor: (Ljava/lang/Class;)Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // java.lang.Class type
         0: .line 262
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* type */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getPeerAddress:(Ljava/lang/Class;)Ljava/net/SocketAddress;
            areturn
        end local 1 // java.lang.Class type
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  type  Ljava/lang/Class<TA;>;
    Signature: <A:Ljava/net/SocketAddress;>(Ljava/lang/Class<TA;>;)TA;
    MethodParameters:
      Name  Flags
      type  

  public org.xnio.ChannelListener$Setter<? extends org.xnio.channels.ConnectedChannel> getCloseSetter();
    descriptor: ()Lorg/xnio/ChannelListener$Setter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 267
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getCloseSetter:()Lorg/xnio/ChannelListener$Setter;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
    Signature: ()Lorg/xnio/ChannelListener$Setter<+Lorg/xnio/channels/ConnectedChannel;>;

  public java.net.SocketAddress getLocalAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 272
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getLocalAddress:()Ljava/net/SocketAddress;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public <A extends java.net.SocketAddress> A getLocalAddress(java.lang.Class<A>);
    descriptor: (Ljava/lang/Class;)Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // java.lang.Class type
         0: .line 277
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* type */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getLocalAddress:(Ljava/lang/Class;)Ljava/net/SocketAddress;
            areturn
        end local 1 // java.lang.Class type
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  type  Ljava/lang/Class<TA;>;
    Signature: <A:Ljava/net/SocketAddress;>(Ljava/lang/Class<TA;>;)TA;
    MethodParameters:
      Name  Flags
      type  

  public org.xnio.OptionMap getUndertowOptions();
    descriptor: ()Lorg/xnio/OptionMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 282
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.undertowOptions:Lorg/xnio/OptionMap;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public int getBufferSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 287
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.bufferSize:I
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public io.undertow.server.SSLSessionInfo getSslSessionInfo();
    descriptor: ()Lio/undertow/server/SSLSessionInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 292
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.sessionInfo:Lio/undertow/server/SSLSessionInfo;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public void setSslSessionInfo(io.undertow.server.SSLSessionInfo);
    descriptor: (Lio/undertow/server/SSLSessionInfo;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.SSLSessionInfo sessionInfo
         0: .line 297
            aload 0 /* this */
            aload 1 /* sessionInfo */
            putfield io.undertow.server.protocol.http2.Http2ServerConnection.sessionInfo:Lio/undertow/server/SSLSessionInfo;
         1: .line 298
            return
        end local 1 // io.undertow.server.SSLSessionInfo sessionInfo
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    2     1  sessionInfo  Lio/undertow/server/SSLSessionInfo;
    MethodParameters:
             Name  Flags
      sessionInfo  

  public void addCloseListener(io.undertow.server.ServerConnection$CloseListener);
    descriptor: (Lio/undertow/server/ServerConnection$CloseListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.ServerConnection$CloseListener listener
         0: .line 302
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            new io.undertow.server.protocol.http2.Http2ServerConnection$3
            dup
            aload 0 /* this */
            aload 1 /* listener */
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection$3.<init>:(Lio/undertow/server/protocol/http2/Http2ServerConnection;Lio/undertow/server/ServerConnection$CloseListener;)V
            invokevirtual io.undertow.protocols.http2.Http2Channel.addCloseTask:(Lorg/xnio/ChannelListener;)V
         1: .line 308
            return
        end local 1 // io.undertow.server.ServerConnection$CloseListener listener
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    2     1  listener  Lio/undertow/server/ServerConnection$CloseListener;
    MethodParameters:
          Name  Flags
      listener  final

  protected org.xnio.StreamConnection upgradeChannel();
    descriptor: ()Lorg/xnio/StreamConnection;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 312
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.upgradeNotSupported:()Ljava/lang/IllegalStateException;
            athrow
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  protected org.xnio.conduits.ConduitStreamSinkChannel getSinkChannel();
    descriptor: ()Lorg/xnio/conduits/ConduitStreamSinkChannel;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 317
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSinkChannel:Lorg/xnio/conduits/ConduitStreamSinkChannel;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  protected org.xnio.conduits.ConduitStreamSourceChannel getSourceChannel();
    descriptor: ()Lorg/xnio/conduits/ConduitStreamSourceChannel;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 322
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.conduitStreamSourceChannel:Lorg/xnio/conduits/ConduitStreamSourceChannel;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  protected org.xnio.conduits.StreamSinkConduit getSinkConduit(io.undertow.server.HttpServerExchange, org.xnio.conduits.StreamSinkConduit);
    descriptor: (Lio/undertow/server/HttpServerExchange;Lorg/xnio/conduits/StreamSinkConduit;)Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
        start local 2 // org.xnio.conduits.StreamSinkConduit conduit
         0: .line 327
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            invokevirtual io.undertow.protocols.http2.Http2DataStreamSinkChannel.getHeaders:()Lio/undertow/util/HeaderMap;
            astore 3 /* headers */
        start local 3 // io.undertow.util.HeaderMap headers
         1: .line 328
            aload 1 /* exchange */
            invokestatic io.undertow.util.DateUtils.addDateHeaderIfRequired:(Lio/undertow/server/HttpServerExchange;)V
         2: .line 329
            aload 3 /* headers */
            getstatic io.undertow.server.protocol.http2.Http2ServerConnection.STATUS:Lio/undertow/util/HttpString;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getStatusCode:()I
            i2l
            invokevirtual io.undertow.util.HeaderMap.add:(Lio/undertow/util/HttpString;J)Lio/undertow/util/HeaderMap;
            pop
         3: .line 330
            aload 1 /* exchange */
            invokestatic io.undertow.server.Connectors.flattenCookies:(Lio/undertow/server/HttpServerExchange;)V
         4: .line 331
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.originalSinkConduit:Lorg/xnio/conduits/StreamSinkConduit;
            areturn
        end local 3 // io.undertow.util.HeaderMap headers
        end local 2 // org.xnio.conduits.StreamSinkConduit conduit
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    5     1  exchange  Lio/undertow/server/HttpServerExchange;
            0    5     2   conduit  Lorg/xnio/conduits/StreamSinkConduit;
            1    5     3   headers  Lio/undertow/util/HeaderMap;
    MethodParameters:
          Name  Flags
      exchange  
      conduit   

  protected boolean isUpgradeSupported();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 336
            iconst_0
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  protected boolean isConnectSupported();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 341
            iconst_0
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  protected void exchangeComplete(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 346
            return
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  exchange  Lio/undertow/server/HttpServerExchange;
    MethodParameters:
          Name  Flags
      exchange  

  protected void setUpgradeListener(io.undertow.server.HttpUpgradeListener);
    descriptor: (Lio/undertow/server/HttpUpgradeListener;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpUpgradeListener upgradeListener
         0: .line 350
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.upgradeNotSupported:()Ljava/lang/IllegalStateException;
            athrow
        end local 1 // io.undertow.server.HttpUpgradeListener upgradeListener
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  upgradeListener  Lio/undertow/server/HttpUpgradeListener;
    MethodParameters:
                 Name  Flags
      upgradeListener  

  protected void setConnectListener(io.undertow.server.HttpUpgradeListener);
    descriptor: (Lio/undertow/server/HttpUpgradeListener;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpUpgradeListener connectListener
         0: .line 356
            return
        end local 1 // io.undertow.server.HttpUpgradeListener connectListener
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1  connectListener  Lio/undertow/server/HttpUpgradeListener;
    MethodParameters:
                 Name  Flags
      connectListener  

  protected void maxEntitySizeUpdated(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.server.HttpServerExchange exchange
         0: .line 360
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            ifnull 2
         1: .line 361
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.requestChannel:Lio/undertow/protocols/http2/Http2StreamSourceChannel;
            aload 1 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getMaxEntitySize:()J
            invokevirtual io.undertow.protocols.http2.Http2StreamSourceChannel.setMaxStreamSize:(J)V
         2: .line 363
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    3     1  exchange  Lio/undertow/server/HttpServerExchange;
    MethodParameters:
          Name  Flags
      exchange  

  public <T> void addToAttachmentList(io.undertow.util.AttachmentKey<io.undertow.util.AttachmentList<T>>, );
    descriptor: (Lio/undertow/util/AttachmentKey;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.util.AttachmentKey key
        start local 2 // java.lang.Object value
         0: .line 367
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual io.undertow.protocols.http2.Http2Channel.addToAttachmentList:(Lio/undertow/util/AttachmentKey;Ljava/lang/Object;)V
         1: .line 368
            return
        end local 2 // java.lang.Object value
        end local 1 // io.undertow.util.AttachmentKey key
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    2     1    key  Lio/undertow/util/AttachmentKey<Lio/undertow/util/AttachmentList<TT;>;>;
            0    2     2  value  TT;
    Signature: <T:Ljava/lang/Object;>(Lio/undertow/util/AttachmentKey<Lio/undertow/util/AttachmentList<TT;>;>;TT;)V
    MethodParameters:
       Name  Flags
      key    
      value  

  public <T> T removeAttachment(io.undertow.util.AttachmentKey<T>);
    descriptor: (Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.util.AttachmentKey key
         0: .line 372
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* key */
            invokevirtual io.undertow.protocols.http2.Http2Channel.removeAttachment:(Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
            areturn
        end local 1 // io.undertow.util.AttachmentKey key
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1   key  Lio/undertow/util/AttachmentKey<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/undertow/util/AttachmentKey<TT;>;)TT;
    MethodParameters:
      Name  Flags
      key   

  public <T> T putAttachment(io.undertow.util.AttachmentKey<T>, );
    descriptor: (Lio/undertow/util/AttachmentKey;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.util.AttachmentKey key
        start local 2 // java.lang.Object value
         0: .line 377
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual io.undertow.protocols.http2.Http2Channel.putAttachment:(Lio/undertow/util/AttachmentKey;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // io.undertow.util.AttachmentKey key
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1    key  Lio/undertow/util/AttachmentKey<TT;>;
            0    1     2  value  TT;
    Signature: <T:Ljava/lang/Object;>(Lio/undertow/util/AttachmentKey<TT;>;TT;)TT;
    MethodParameters:
       Name  Flags
      key    
      value  

  public <T> java.util.List<T> getAttachmentList(io.undertow.util.AttachmentKey<? extends java.util.List<T>>);
    descriptor: (Lio/undertow/util/AttachmentKey;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.util.AttachmentKey key
         0: .line 382
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* key */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getAttachmentList:(Lio/undertow/util/AttachmentKey;)Ljava/util/List;
            areturn
        end local 1 // io.undertow.util.AttachmentKey key
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1   key  Lio/undertow/util/AttachmentKey<+Ljava/util/List<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/undertow/util/AttachmentKey<+Ljava/util/List<TT;>;>;)Ljava/util/List<TT;>;
    MethodParameters:
      Name  Flags
      key   

  public <T> T getAttachment(io.undertow.util.AttachmentKey<T>);
    descriptor: (Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // io.undertow.util.AttachmentKey key
         0: .line 387
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 1 /* key */
            invokevirtual io.undertow.protocols.http2.Http2Channel.getAttachment:(Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
            areturn
        end local 1 // io.undertow.util.AttachmentKey key
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1   key  Lio/undertow/util/AttachmentKey<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/undertow/util/AttachmentKey<TT;>;)TT;
    MethodParameters:
      Name  Flags
      key   

  public boolean isPushSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 392
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.isPushEnabled:()Z
            ifeq 1
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.util.Headers.X_DISABLE_PUSH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.contains:(Lio/undertow/util/HttpString;)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public boolean isRequestTrailerFieldsSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 397
            iconst_1
            ireturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;

  public boolean pushResource(java.lang.String, io.undertow.util.HttpString, io.undertow.util.HeaderMap);
    descriptor: (Ljava/lang/String;Lio/undertow/util/HttpString;Lio/undertow/util/HeaderMap;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // java.lang.String path
        start local 2 // io.undertow.util.HttpString method
        start local 3 // io.undertow.util.HeaderMap requestHeaders
         0: .line 402
            aload 0 /* this */
            aload 1 /* path */
            aload 2 /* method */
            aload 3 /* requestHeaders */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.rootHandler:Lio/undertow/server/HttpHandler;
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.pushResource:(Ljava/lang/String;Lio/undertow/util/HttpString;Lio/undertow/util/HeaderMap;Lio/undertow/server/HttpHandler;)Z
            ireturn
        end local 3 // io.undertow.util.HeaderMap requestHeaders
        end local 2 // io.undertow.util.HttpString method
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0    1     1            path  Ljava/lang/String;
            0    1     2          method  Lio/undertow/util/HttpString;
            0    1     3  requestHeaders  Lio/undertow/util/HeaderMap;
    MethodParameters:
                Name  Flags
      path            
      method          
      requestHeaders  

  public boolean pushResource(java.lang.String, io.undertow.util.HttpString, io.undertow.util.HeaderMap, io.undertow.server.HttpHandler);
    descriptor: (Ljava/lang/String;Lio/undertow/util/HttpString;Lio/undertow/util/HeaderMap;Lio/undertow/server/HttpHandler;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=10, args_size=5
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
        start local 1 // java.lang.String path
        start local 2 // io.undertow.util.HttpString method
        start local 3 // io.undertow.util.HeaderMap requestHeaders
        start local 4 // io.undertow.server.HttpHandler handler
         0: .line 407
            new io.undertow.util.HeaderMap
            dup
            invokespecial io.undertow.util.HeaderMap.<init>:()V
            astore 5 /* responseHeaders */
        start local 5 // io.undertow.util.HeaderMap responseHeaders
         1: .line 409
            aload 3 /* requestHeaders */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.METHOD:Lio/undertow/util/HttpString;
            aload 2 /* method */
            invokevirtual io.undertow.util.HttpString.toString:()Ljava/lang/String;
            invokevirtual io.undertow.util.HeaderMap.put:(Lio/undertow/util/HttpString;Ljava/lang/String;)Lio/undertow/util/HeaderMap;
            pop
         2: .line 410
            aload 3 /* requestHeaders */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.PATH:Lio/undertow/util/HttpString;
            aload 1 /* path */
            invokevirtual java.lang.String.toString:()Ljava/lang/String;
            invokevirtual io.undertow.util.HeaderMap.put:(Lio/undertow/util/HttpString;Ljava/lang/String;)Lio/undertow/util/HeaderMap;
            pop
         3: .line 411
            aload 3 /* requestHeaders */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.AUTHORITY:Lio/undertow/util/HttpString;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getHostAndPort:()Ljava/lang/String;
            invokevirtual io.undertow.util.HeaderMap.put:(Lio/undertow/util/HttpString;Ljava/lang/String;)Lio/undertow/util/HeaderMap;
            pop
         4: .line 412
            aload 3 /* requestHeaders */
            getstatic io.undertow.server.protocol.http2.Http2ReceiveListener.SCHEME:Lio/undertow/util/HttpString;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestScheme:()Ljava/lang/String;
            invokevirtual io.undertow.util.HeaderMap.put:(Lio/undertow/util/HttpString;Ljava/lang/String;)Lio/undertow/util/HeaderMap;
            pop
         5: .line 414
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.responseChannel:Lio/undertow/protocols/http2/Http2DataStreamSinkChannel;
            invokevirtual io.undertow.protocols.http2.Http2DataStreamSinkChannel.getStreamId:()I
            aload 3 /* requestHeaders */
            aload 5 /* responseHeaders */
            invokevirtual io.undertow.protocols.http2.Http2Channel.sendPushPromise:(ILio/undertow/util/HeaderMap;Lio/undertow/util/HeaderMap;)Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            astore 6 /* sink */
        start local 6 // io.undertow.protocols.http2.Http2HeadersStreamSinkChannel sink
         6: .line 415
            new io.undertow.server.protocol.http2.Http2ServerConnection
            dup
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            aload 6 /* sink */
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getBufferSize:()I
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.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 7 /* newConnection */
        start local 7 // io.undertow.server.protocol.http2.Http2ServerConnection newConnection
         7: .line 416
            new io.undertow.server.HttpServerExchange
            dup
            aload 7 /* newConnection */
            aload 3 /* requestHeaders */
            aload 5 /* responseHeaders */
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.MAX_ENTITY_SIZE:Lorg/xnio/Option;
            ldc -1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;J)J
            invokespecial io.undertow.server.HttpServerExchange.<init>:(Lio/undertow/server/ServerConnection;Lio/undertow/util/HeaderMap;Lio/undertow/util/HeaderMap;J)V
            astore 8 /* exchange */
        start local 8 // io.undertow.server.HttpServerExchange exchange
         8: .line 417
            aload 7 /* newConnection */
            aload 8 /* exchange */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.setExchange:(Lio/undertow/server/HttpServerExchange;)V
         9: .line 418
            aload 8 /* exchange */
            aload 2 /* method */
            invokevirtual io.undertow.server.HttpServerExchange.setRequestMethod:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        10: .line 419
            aload 8 /* exchange */
            getstatic io.undertow.util.Protocols.HTTP_1_1:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.server.HttpServerExchange.setProtocol:(Lio/undertow/util/HttpString;)Lio/undertow/server/HttpServerExchange;
            pop
        11: .line 420
            aload 8 /* exchange */
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.exchange:Lio/undertow/server/HttpServerExchange;
            invokevirtual io.undertow.server.HttpServerExchange.getRequestScheme:()Ljava/lang/String;
            invokevirtual io.undertow.server.HttpServerExchange.setRequestScheme:(Ljava/lang/String;)Lio/undertow/server/HttpServerExchange;
            pop
        12: .line 422
            aload 8 /* exchange */
            aload 1 /* path */
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            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
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.DECODE_URL:Lorg/xnio/Option;
            iconst_1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.ALLOW_ENCODED_SLASH:Lorg/xnio/Option;
            iconst_0
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.MAX_PARAMETERS:Lorg/xnio/Option;
            sipush 200
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;I)I
            invokestatic io.undertow.server.Connectors.setExchangeRequestPath:(Lio/undertow/server/HttpServerExchange;Ljava/lang/String;Ljava/lang/String;ZZLjava/lang/StringBuilder;I)V
        13: .line 423
            goto 19
      StackMap locals: io.undertow.server.protocol.http2.Http2ServerConnection java.lang.String io.undertow.util.HttpString io.undertow.util.HeaderMap io.undertow.server.HttpHandler io.undertow.util.HeaderMap io.undertow.protocols.http2.Http2HeadersStreamSinkChannel io.undertow.server.protocol.http2.Http2ServerConnection io.undertow.server.HttpServerExchange
      StackMap stack: io.undertow.util.ParameterLimitException
        14: astore 9 /* e */
        start local 9 // io.undertow.util.ParameterLimitException e
        15: .line 424
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            ldc "Too many parameters in HTTP/2 request"
            aload 9 /* e */
            invokeinterface io.undertow.UndertowLogger.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        16: .line 425
            aload 8 /* exchange */
            sipush 400
            invokevirtual io.undertow.server.HttpServerExchange.setStatusCode:(I)Lio/undertow/server/HttpServerExchange;
            pop
        17: .line 426
            aload 8 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.endExchange:()Lio/undertow/server/HttpServerExchange;
            pop
        18: .line 427
            iconst_0
            ireturn
        end local 9 // io.undertow.util.ParameterLimitException e
        19: .line 430
      StackMap locals:
      StackMap stack:
            aload 8 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        20: .line 431
            aload 0 /* this */
            invokevirtual io.undertow.server.protocol.http2.Http2ServerConnection.getIoThread:()Lorg/xnio/XnioIoThread;
            new io.undertow.server.protocol.http2.Http2ServerConnection$4
            dup
            aload 0 /* this */
            aload 4 /* handler */
            aload 8 /* exchange */
            invokespecial io.undertow.server.protocol.http2.Http2ServerConnection$4.<init>:(Lio/undertow/server/protocol/http2/Http2ServerConnection;Lio/undertow/server/HttpHandler;Lio/undertow/server/HttpServerExchange;)V
            invokevirtual org.xnio.XnioIoThread.execute:(Ljava/lang/Runnable;)V
        21: .line 437
            iconst_1
            ireturn
        end local 8 // io.undertow.server.HttpServerExchange exchange
        end local 7 // io.undertow.server.protocol.http2.Http2ServerConnection newConnection
        end local 6 // io.undertow.protocols.http2.Http2HeadersStreamSinkChannel sink
        22: .line 438
      StackMap locals: io.undertow.server.protocol.http2.Http2ServerConnection java.lang.String io.undertow.util.HttpString io.undertow.util.HeaderMap io.undertow.server.HttpHandler io.undertow.util.HeaderMap
      StackMap stack: java.io.IOException
            astore 6 /* e */
        start local 6 // java.io.IOException e
        23: .line 439
            getstatic io.undertow.UndertowLogger.REQUEST_IO_LOGGER:Lio/undertow/UndertowLogger;
            aload 6 /* e */
            invokeinterface io.undertow.UndertowLogger.ioException:(Ljava/io/IOException;)V
        24: .line 440
            iconst_0
            ireturn
        end local 6 // java.io.IOException e
        end local 5 // io.undertow.util.HeaderMap responseHeaders
        end local 4 // io.undertow.server.HttpHandler handler
        end local 3 // io.undertow.util.HeaderMap requestHeaders
        end local 2 // io.undertow.util.HttpString method
        end local 1 // java.lang.String path
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   25     0             this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            0   25     1             path  Ljava/lang/String;
            0   25     2           method  Lio/undertow/util/HttpString;
            0   25     3   requestHeaders  Lio/undertow/util/HeaderMap;
            0   25     4          handler  Lio/undertow/server/HttpHandler;
            1   25     5  responseHeaders  Lio/undertow/util/HeaderMap;
            6   22     6             sink  Lio/undertow/protocols/http2/Http2HeadersStreamSinkChannel;
            7   22     7    newConnection  Lio/undertow/server/protocol/http2/Http2ServerConnection;
            8   22     8         exchange  Lio/undertow/server/HttpServerExchange;
           15   19     9                e  Lio/undertow/util/ParameterLimitException;
           23   25     6                e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          12    13      14  Class io.undertow.util.ParameterLimitException
           1    18      22  Class java.io.IOException
          19    21      22  Class java.io.IOException
    MethodParameters:
                Name  Flags
      path            
      method          
      requestHeaders  
      handler         final

  public java.lang.String getTransportProtocol();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
         0: .line 446
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2ServerConnection.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getProtocol:()Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2ServerConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2ServerConnection;
}
SourceFile: "Http2ServerConnection.java"
NestMembers:
  io.undertow.server.protocol.http2.Http2ServerConnection$1  io.undertow.server.protocol.http2.Http2ServerConnection$2  io.undertow.server.protocol.http2.Http2ServerConnection$3  io.undertow.server.protocol.http2.Http2ServerConnection$4
InnerClasses:
  public abstract CloseListener = io.undertow.server.ServerConnection$CloseListener of io.undertow.server.ServerConnection
  io.undertow.server.protocol.http2.Http2ServerConnection$1
  io.undertow.server.protocol.http2.Http2ServerConnection$2
  io.undertow.server.protocol.http2.Http2ServerConnection$3
  io.undertow.server.protocol.http2.Http2ServerConnection$4
  public abstract Setter = org.xnio.ChannelListener$Setter of org.xnio.ChannelListener