class io.undertow.server.protocol.http.HttpTransferEncoding
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.undertow.server.protocol.http.HttpTransferEncoding
  super_class: java.lang.Object
{
  private static final org.jboss.logging.Logger log;
    descriptor: Lorg/jboss/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 55
            ldc "io.undertow.server.handler.transfer-encoding"
            invokestatic org.jboss.logging.Logger.getLogger:(Ljava/lang/String;)Lorg/jboss/logging/Logger;
            putstatic io.undertow.server.protocol.http.HttpTransferEncoding.log:Lorg/jboss/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public static void setupRequest(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 65
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestHeaders:()Lio/undertow/util/HeaderMap;
            astore 1 /* requestHeaders */
        start local 1 // io.undertow.util.HeaderMap requestHeaders
         1: .line 66
            aload 1 /* requestHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 2 /* connectionHeader */
        start local 2 // java.lang.String connectionHeader
         2: .line 67
            aload 1 /* requestHeaders */
            getstatic io.undertow.util.Headers.TRANSFER_ENCODING:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getLast:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 3 /* transferEncodingHeader */
        start local 3 // java.lang.String transferEncodingHeader
         3: .line 68
            aload 1 /* requestHeaders */
            getstatic io.undertow.util.Headers.CONTENT_LENGTH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 4 /* contentLengthHeader */
        start local 4 // java.lang.String contentLengthHeader
         4: .line 70
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            checkcast io.undertow.server.protocol.http.HttpServerConnection
            astore 5 /* connection */
        start local 5 // io.undertow.server.protocol.http.HttpServerConnection connection
         5: .line 72
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getPipelineBuffer:()Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;
            astore 6 /* pipeliningBuffer */
        start local 6 // io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit pipeliningBuffer
         6: .line 73
            aload 6 /* pipeliningBuffer */
            ifnull 8
         7: .line 74
            aload 6 /* pipeliningBuffer */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit.setupPipelineBuffer:(Lio/undertow/server/HttpServerExchange;)V
         8: .line 76
      StackMap locals: io.undertow.server.HttpServerExchange io.undertow.util.HeaderMap java.lang.String java.lang.String java.lang.String io.undertow.server.protocol.http.HttpServerConnection io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit
      StackMap stack:
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getChannel:()Lorg/xnio/StreamConnection;
            invokevirtual org.xnio.StreamConnection.getSourceChannel:()Lorg/xnio/conduits/ConduitStreamSourceChannel;
            astore 7 /* sourceChannel */
        start local 7 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
         9: .line 77
            aload 7 /* sourceChannel */
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getReadDataStreamSourceConduit:()Lio/undertow/conduits/ReadDataStreamSourceConduit;
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.setConduit:(Lorg/xnio/conduits/StreamSourceConduit;)V
        10: .line 79
            aload 0 /* exchange */
            aload 2 /* connectionHeader */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.persistentConnection:(Lio/undertow/server/HttpServerExchange;Ljava/lang/String;)Z
            istore 8 /* persistentConnection */
        start local 8 // boolean persistentConnection
        11: .line 81
            aload 3 /* transferEncodingHeader */
            ifnonnull 21
            aload 4 /* contentLengthHeader */
            ifnonnull 21
        12: .line 82
            iload 8 /* persistentConnection */
            ifeq 19
        13: .line 83
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getExtraBytes:()Lio/undertow/connector/PooledByteBuffer;
            ifnull 19
        14: .line 84
            aload 6 /* pipeliningBuffer */
            ifnonnull 19
        15: .line 85
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.BUFFER_PIPELINED_DATA:Lorg/xnio/Option;
            iconst_0
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            ifeq 19
        16: .line 86
            new io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit
            dup
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getOriginalSinkConduit:()Lorg/xnio/conduits/StreamSinkConduit;
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getByteBufferPool:()Lio/undertow/connector/ByteBufferPool;
            invokespecial io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/connector/ByteBufferPool;)V
            astore 6 /* pipeliningBuffer */
        17: .line 87
            aload 5 /* connection */
            aload 6 /* pipeliningBuffer */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.setPipelineBuffer:(Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;)V
        18: .line 88
            aload 6 /* pipeliningBuffer */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit.setupPipelineBuffer:(Lio/undertow/server/HttpServerExchange;)V
        19: .line 91
      StackMap locals: org.xnio.conduits.ConduitStreamSourceChannel int
      StackMap stack:
            aload 0 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        20: .line 92
            goto 22
        21: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            aload 3 /* transferEncodingHeader */
            aload 4 /* contentLengthHeader */
            aload 5 /* connection */
            aload 6 /* pipeliningBuffer */
            iload 8 /* persistentConnection */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.handleRequestEncoding:(Lio/undertow/server/HttpServerExchange;Ljava/lang/String;Ljava/lang/String;Lio/undertow/server/protocol/http/HttpServerConnection;Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;Z)Z
            istore 8 /* persistentConnection */
        22: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            iload 8 /* persistentConnection */
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        23: .line 98
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isRequestComplete:()Z
            ifeq 24
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getExtraBytes:()Lio/undertow/connector/PooledByteBuffer;
            ifnull 26
        24: .line 100
      StackMap locals:
      StackMap stack:
            aload 7 /* sourceChannel */
            aconst_null
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.setReadListener:(Lorg/xnio/ChannelListener;)V
        25: .line 101
            aload 7 /* sourceChannel */
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.suspendReads:()V
        26: .line 104
      StackMap locals:
      StackMap stack:
            return
        end local 8 // boolean persistentConnection
        end local 7 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
        end local 6 // io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit pipeliningBuffer
        end local 5 // io.undertow.server.protocol.http.HttpServerConnection connection
        end local 4 // java.lang.String contentLengthHeader
        end local 3 // java.lang.String transferEncodingHeader
        end local 2 // java.lang.String connectionHeader
        end local 1 // io.undertow.util.HeaderMap requestHeaders
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   27     0                exchange  Lio/undertow/server/HttpServerExchange;
            1   27     1          requestHeaders  Lio/undertow/util/HeaderMap;
            2   27     2        connectionHeader  Ljava/lang/String;
            3   27     3  transferEncodingHeader  Ljava/lang/String;
            4   27     4     contentLengthHeader  Ljava/lang/String;
            5   27     5              connection  Lio/undertow/server/protocol/http/HttpServerConnection;
            6   27     6        pipeliningBuffer  Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;
            9   27     7           sourceChannel  Lorg/xnio/conduits/ConduitStreamSourceChannel;
           11   27     8    persistentConnection  Z
    MethodParameters:
          Name  Flags
      exchange  final

  private static boolean handleRequestEncoding(io.undertow.server.HttpServerExchange, java.lang.String, java.lang.String, io.undertow.server.protocol.http.HttpServerConnection, io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit, boolean);
    descriptor: (Lio/undertow/server/HttpServerExchange;Ljava/lang/String;Ljava/lang/String;Lio/undertow/server/protocol/http/HttpServerConnection;Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;Z)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=10, args_size=6
        start local 0 // io.undertow.server.HttpServerExchange exchange
        start local 1 // java.lang.String transferEncodingHeader
        start local 2 // java.lang.String contentLengthHeader
        start local 3 // io.undertow.server.protocol.http.HttpServerConnection connection
        start local 4 // io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit pipeliningBuffer
        start local 5 // boolean persistentConnection
         0: .line 108
            getstatic io.undertow.util.Headers.IDENTITY:Lio/undertow/util/HttpString;
            astore 6 /* transferEncoding */
        start local 6 // io.undertow.util.HttpString transferEncoding
         1: .line 109
            aload 1 /* transferEncodingHeader */
            ifnull 3
         2: .line 110
            new io.undertow.util.HttpString
            dup
            aload 1 /* transferEncodingHeader */
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            astore 6 /* transferEncoding */
         3: .line 112
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 1 /* transferEncodingHeader */
            ifnull 7
            aload 6 /* transferEncoding */
            getstatic io.undertow.util.Headers.IDENTITY:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HttpString.equals:(Lio/undertow/util/HttpString;)Z
            ifne 7
         4: .line 113
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            checkcast io.undertow.server.protocol.http.HttpServerConnection
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getChannel:()Lorg/xnio/StreamConnection;
            invokevirtual org.xnio.StreamConnection.getSourceChannel:()Lorg/xnio/conduits/ConduitStreamSourceChannel;
            astore 7 /* sourceChannel */
        start local 7 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
         5: .line 114
            aload 7 /* sourceChannel */
            new io.undertow.conduits.ChunkedStreamSourceConduit
            dup
            aload 7 /* sourceChannel */
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.getConduit:()Lorg/xnio/conduits/StreamSourceConduit;
            aload 0 /* exchange */
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.chunkedDrainListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            invokespecial io.undertow.conduits.ChunkedStreamSourceConduit.<init>:(Lorg/xnio/conduits/StreamSourceConduit;Lio/undertow/server/HttpServerExchange;Lio/undertow/conduits/ConduitListener;)V
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.setConduit:(Lorg/xnio/conduits/StreamSourceConduit;)V
        end local 7 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
         6: .line 115
            goto 30
      StackMap locals:
      StackMap stack:
         7: aload 2 /* contentLengthHeader */
            ifnull 16
         8: .line 117
            aload 2 /* contentLengthHeader */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.parsePositiveLong:(Ljava/lang/String;)J
            lstore 7 /* contentLength */
        start local 7 // long contentLength
         9: .line 118
            lload 7 /* contentLength */
            lconst_0
            lcmp
            ifne 13
        10: .line 119
            getstatic io.undertow.server.protocol.http.HttpTransferEncoding.log:Lorg/jboss/logging/Logger;
            ldc "No content, starting next request"
            invokevirtual org.jboss.logging.Logger.trace:(Ljava/lang/Object;)V
        11: .line 121
            aload 0 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        12: .line 122
            goto 30
        13: .line 124
      StackMap locals: long
      StackMap stack:
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            checkcast io.undertow.server.protocol.http.HttpServerConnection
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getChannel:()Lorg/xnio/StreamConnection;
            invokevirtual org.xnio.StreamConnection.getSourceChannel:()Lorg/xnio/conduits/ConduitStreamSourceChannel;
            astore 9 /* sourceChannel */
        start local 9 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
        14: .line 125
            aload 9 /* sourceChannel */
            lload 7 /* contentLength */
            aload 9 /* sourceChannel */
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.getConduit:()Lorg/xnio/conduits/StreamSourceConduit;
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.fixedLengthStreamSourceConduitWrapper:(JLorg/xnio/conduits/StreamSourceConduit;Lio/undertow/server/HttpServerExchange;)Lorg/xnio/conduits/StreamSourceConduit;
            invokevirtual org.xnio.conduits.ConduitStreamSourceChannel.setConduit:(Lorg/xnio/conduits/StreamSourceConduit;)V
        end local 9 // org.xnio.conduits.ConduitStreamSourceChannel sourceChannel
        end local 7 // long contentLength
        15: .line 127
            goto 30
      StackMap locals:
      StackMap stack:
        16: aload 1 /* transferEncodingHeader */
            ifnull 20
        17: .line 129
            getstatic io.undertow.server.protocol.http.HttpTransferEncoding.log:Lorg/jboss/logging/Logger;
            ldc "Connection not persistent (no content length and identity transfer encoding)"
            invokevirtual org.jboss.logging.Logger.trace:(Ljava/lang/Object;)V
        18: .line 131
            iconst_0
            istore 5 /* persistentConnection */
        19: .line 132
            goto 30
      StackMap locals:
      StackMap stack:
        20: iload 5 /* persistentConnection */
            ifeq 29
        21: .line 135
            aload 3 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getExtraBytes:()Lio/undertow/connector/PooledByteBuffer;
            ifnull 27
        22: .line 136
            aload 4 /* pipeliningBuffer */
            ifnonnull 27
        23: .line 137
            aload 3 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.BUFFER_PIPELINED_DATA:Lorg/xnio/Option;
            iconst_0
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            ifeq 27
        24: .line 138
            new io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit
            dup
            aload 3 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getOriginalSinkConduit:()Lorg/xnio/conduits/StreamSinkConduit;
            aload 3 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getByteBufferPool:()Lio/undertow/connector/ByteBufferPool;
            invokespecial io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/connector/ByteBufferPool;)V
            astore 4 /* pipeliningBuffer */
        25: .line 139
            aload 3 /* connection */
            aload 4 /* pipeliningBuffer */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.setPipelineBuffer:(Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;)V
        26: .line 140
            aload 4 /* pipeliningBuffer */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit.setupPipelineBuffer:(Lio/undertow/server/HttpServerExchange;)V
        27: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        28: .line 145
            goto 30
        29: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            invokestatic io.undertow.server.Connectors.terminateRequest:(Lio/undertow/server/HttpServerExchange;)V
        30: .line 150
      StackMap locals:
      StackMap stack:
            iload 5 /* persistentConnection */
            ireturn
        end local 6 // io.undertow.util.HttpString transferEncoding
        end local 5 // boolean persistentConnection
        end local 4 // io.undertow.server.protocol.http.PipeliningBufferingStreamSinkConduit pipeliningBuffer
        end local 3 // io.undertow.server.protocol.http.HttpServerConnection connection
        end local 2 // java.lang.String contentLengthHeader
        end local 1 // java.lang.String transferEncodingHeader
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   31     0                exchange  Lio/undertow/server/HttpServerExchange;
            0   31     1  transferEncodingHeader  Ljava/lang/String;
            0   31     2     contentLengthHeader  Ljava/lang/String;
            0   31     3              connection  Lio/undertow/server/protocol/http/HttpServerConnection;
            0   31     4        pipeliningBuffer  Lio/undertow/server/protocol/http/PipeliningBufferingStreamSinkConduit;
            0   31     5    persistentConnection  Z
            1   31     6        transferEncoding  Lio/undertow/util/HttpString;
            5    6     7           sourceChannel  Lorg/xnio/conduits/ConduitStreamSourceChannel;
            9   15     7           contentLength  J
           14   15     9           sourceChannel  Lorg/xnio/conduits/ConduitStreamSourceChannel;
    MethodParameters:
                        Name  Flags
      exchange                final
      transferEncodingHeader  
      contentLengthHeader     
      connection              
      pipeliningBuffer        
      persistentConnection    

  private static boolean persistentConnection(io.undertow.server.HttpServerExchange, java.lang.String);
    descriptor: (Lio/undertow/server/HttpServerExchange;Ljava/lang/String;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.undertow.server.HttpServerExchange exchange
        start local 1 // java.lang.String connectionHeader
         0: .line 154
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isHttp11:()Z
            ifeq 4
         1: .line 155
            aload 1 /* connectionHeader */
            ifnull 2
            getstatic io.undertow.util.Headers.CLOSE:Lio/undertow/util/HttpString;
            aload 1 /* connectionHeader */
            invokevirtual io.undertow.util.HttpString.equalToString:(Ljava/lang/String;)Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isHttp10:()Z
            ifeq 8
         5: .line 157
            aload 1 /* connectionHeader */
            ifnull 8
         6: .line 158
            getstatic io.undertow.util.Headers.KEEP_ALIVE:Lio/undertow/util/HttpString;
            new io.undertow.util.HttpString
            dup
            aload 1 /* connectionHeader */
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            invokevirtual io.undertow.util.HttpString.equals:(Lio/undertow/util/HttpString;)Z
            ifeq 8
         7: .line 159
            iconst_1
            ireturn
         8: .line 163
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.server.protocol.http.HttpTransferEncoding.log:Lorg/jboss/logging/Logger;
            ldc "Connection not persistent"
            invokevirtual org.jboss.logging.Logger.trace:(Ljava/lang/Object;)V
         9: .line 164
            iconst_0
            ireturn
        end local 1 // java.lang.String connectionHeader
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0          exchange  Lio/undertow/server/HttpServerExchange;
            0   10     1  connectionHeader  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      exchange          
      connectionHeader  

  private static org.xnio.conduits.StreamSourceConduit fixedLengthStreamSourceConduitWrapper(long, org.xnio.conduits.StreamSourceConduit, io.undertow.server.HttpServerExchange);
    descriptor: (JLorg/xnio/conduits/StreamSourceConduit;Lio/undertow/server/HttpServerExchange;)Lorg/xnio/conduits/StreamSourceConduit;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // long contentLength
        start local 2 // org.xnio.conduits.StreamSourceConduit conduit
        start local 3 // io.undertow.server.HttpServerExchange exchange
         0: .line 168
            new io.undertow.conduits.FixedLengthStreamSourceConduit
            dup
            aload 2 /* conduit */
            lload 0 /* contentLength */
            aload 3 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.fixedLengthDrainListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            aload 3 /* exchange */
            invokespecial io.undertow.conduits.FixedLengthStreamSourceConduit.<init>:(Lorg/xnio/conduits/StreamSourceConduit;JLio/undertow/conduits/ConduitListener;Lio/undertow/server/HttpServerExchange;)V
            areturn
        end local 3 // io.undertow.server.HttpServerExchange exchange
        end local 2 // org.xnio.conduits.StreamSourceConduit conduit
        end local 0 // long contentLength
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0  contentLength  J
            0    1     2        conduit  Lorg/xnio/conduits/StreamSourceConduit;
            0    1     3       exchange  Lio/undertow/server/HttpServerExchange;
    MethodParameters:
               Name  Flags
      contentLength  final
      conduit        final
      exchange       final

  private static io.undertow.conduits.ConduitListener<io.undertow.conduits.FixedLengthStreamSourceConduit> fixedLengthDrainListener(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 172
            new io.undertow.server.protocol.http.HttpTransferEncoding$1
            dup
            aload 0 /* exchange */
            invokespecial io.undertow.server.protocol.http.HttpTransferEncoding$1.<init>:(Lio/undertow/server/HttpServerExchange;)V
            areturn
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  exchange  Lio/undertow/server/HttpServerExchange;
    Signature: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener<Lio/undertow/conduits/FixedLengthStreamSourceConduit;>;
    MethodParameters:
          Name  Flags
      exchange  final

  private static io.undertow.conduits.ConduitListener<io.undertow.conduits.ChunkedStreamSourceConduit> chunkedDrainListener(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 185
            new io.undertow.server.protocol.http.HttpTransferEncoding$2
            dup
            aload 0 /* exchange */
            invokespecial io.undertow.server.protocol.http.HttpTransferEncoding$2.<init>:(Lio/undertow/server/HttpServerExchange;)V
            areturn
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  exchange  Lio/undertow/server/HttpServerExchange;
    Signature: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener<Lio/undertow/conduits/ChunkedStreamSourceConduit;>;
    MethodParameters:
          Name  Flags
      exchange  final

  private static io.undertow.conduits.ConduitListener<org.xnio.conduits.StreamSinkConduit> terminateResponseListener(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 197
            new io.undertow.server.protocol.http.HttpTransferEncoding$3
            dup
            aload 0 /* exchange */
            invokespecial io.undertow.server.protocol.http.HttpTransferEncoding$3.<init>:(Lio/undertow/server/HttpServerExchange;)V
            areturn
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  exchange  Lio/undertow/server/HttpServerExchange;
    Signature: (Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener<Lorg/xnio/conduits/StreamSinkConduit;>;
    MethodParameters:
          Name  Flags
      exchange  final

  static org.xnio.conduits.StreamSinkConduit createSinkConduit(io.undertow.server.HttpServerExchange);
    descriptor: (Lio/undertow/server/HttpServerExchange;)Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=10, args_size=1
        start local 0 // io.undertow.server.HttpServerExchange exchange
         0: .line 205
            aload 0 /* exchange */
            invokestatic io.undertow.util.DateUtils.addDateHeaderIfRequired:(Lio/undertow/server/HttpServerExchange;)V
         1: .line 207
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getRequestMethod:()Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Methods.HEAD:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HttpString.equals:(Lio/undertow/util/HttpString;)Z
            istore 1 /* headRequest */
        start local 1 // boolean headRequest
         2: .line 208
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            checkcast io.undertow.server.protocol.http.HttpServerConnection
            astore 2 /* serverConnection */
        start local 2 // io.undertow.server.protocol.http.HttpServerConnection serverConnection
         3: .line 210
            aload 2 /* serverConnection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getResponseConduit:()Lio/undertow/server/protocol/http/HttpResponseConduit;
            astore 3 /* responseConduit */
        start local 3 // io.undertow.server.protocol.http.HttpResponseConduit responseConduit
         4: .line 211
            aload 3 /* responseConduit */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.protocol.http.HttpResponseConduit.reset:(Lio/undertow/server/HttpServerExchange;)V
         5: .line 212
            aload 3 /* responseConduit */
            astore 4 /* channel */
        start local 4 // org.xnio.conduits.StreamSinkConduit channel
         6: .line 213
            iload 1 /* headRequest */
            ifeq 9
         7: .line 217
            new io.undertow.conduits.HeadStreamSinkConduit
            dup
            aload 4 /* channel */
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.terminateResponseListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            invokespecial io.undertow.conduits.HeadStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;)V
            astore 4 /* channel */
         8: .line 218
            goto 14
      StackMap locals: io.undertow.server.HttpServerExchange int io.undertow.server.protocol.http.HttpServerConnection io.undertow.server.protocol.http.HttpResponseConduit org.xnio.conduits.StreamSinkConduit
      StackMap stack:
         9: aload 0 /* exchange */
            invokestatic io.undertow.server.Connectors.isEntityBodyAllowed:(Lio/undertow/server/HttpServerExchange;)Z
            ifne 14
        10: .line 220
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResponseHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.util.Headers.CONTENT_LENGTH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        11: .line 221
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResponseHeaders:()Lio/undertow/util/HeaderMap;
            getstatic io.undertow.util.Headers.TRANSFER_ENCODING:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        12: .line 222
            new io.undertow.conduits.HeadStreamSinkConduit
            dup
            aload 4 /* channel */
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.terminateResponseListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            invokespecial io.undertow.conduits.HeadStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;)V
            astore 4 /* channel */
        13: .line 223
            aload 4 /* channel */
            areturn
        14: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getResponseHeaders:()Lio/undertow/util/HeaderMap;
            astore 5 /* responseHeaders */
        start local 5 // io.undertow.util.HeaderMap responseHeaders
        15: .line 228
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 6 /* connection */
        start local 6 // java.lang.String connection
        16: .line 229
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getStatusCode:()I
            sipush 417
            if_icmpne 18
        17: .line 232
            aload 0 /* exchange */
            iconst_0
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        18: .line 234
      StackMap locals: io.undertow.util.HeaderMap java.lang.String
      StackMap stack:
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isPersistent:()Z
            ifne 21
        19: .line 235
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.CLOSE:Lio/undertow/util/HttpString;
            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
        20: .line 236
            goto 27
      StackMap locals:
      StackMap stack:
        21: aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isPersistent:()Z
            ifeq 25
            aload 6 /* connection */
            ifnull 25
        22: .line 237
            aload 6 /* connection */
            invokestatic io.undertow.util.HttpString.tryFromString:(Ljava/lang/String;)Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.CLOSE:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HttpString.equals:(Lio/undertow/util/HttpString;)Z
            ifeq 27
        23: .line 238
            aload 0 /* exchange */
            iconst_0
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        24: .line 240
            goto 27
      StackMap locals:
      StackMap stack:
        25: aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            invokevirtual io.undertow.server.ServerConnection.getUndertowOptions:()Lorg/xnio/OptionMap;
            getstatic io.undertow.UndertowOptions.ALWAYS_SET_KEEP_ALIVE:Lorg/xnio/Option;
            iconst_1
            invokevirtual org.xnio.OptionMap.get:(Lorg/xnio/Option;Z)Z
            ifeq 27
        26: .line 241
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.KEEP_ALIVE:Lio/undertow/util/HttpString;
            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
        27: .line 244
      StackMap locals:
      StackMap stack:
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.TRANSFER_ENCODING:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getLast:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 7 /* transferEncodingHeader */
        start local 7 // java.lang.String transferEncodingHeader
        28: .line 245
            aload 7 /* transferEncodingHeader */
            ifnonnull 34
        29: .line 246
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONTENT_LENGTH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.getFirst:(Lio/undertow/util/HttpString;)Ljava/lang/String;
            astore 8 /* contentLengthHeader */
        start local 8 // java.lang.String contentLengthHeader
        30: .line 247
            aload 8 /* contentLengthHeader */
            ifnull 35
        31: .line 248
            aload 0 /* exchange */
            iload 1 /* headRequest */
            aload 4 /* channel */
            aload 5 /* responseHeaders */
            aload 8 /* contentLengthHeader */
            aload 2 /* serverConnection */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.handleFixedLength:(Lio/undertow/server/HttpServerExchange;ZLorg/xnio/conduits/StreamSinkConduit;Lio/undertow/util/HeaderMap;Ljava/lang/String;Lio/undertow/server/protocol/http/HttpServerConnection;)Lorg/xnio/conduits/StreamSinkConduit;
            astore 9 /* res */
        start local 9 // org.xnio.conduits.StreamSinkConduit res
        32: .line 249
            aload 9 /* res */
            ifnull 35
        33: .line 250
            aload 9 /* res */
            areturn
        end local 9 // org.xnio.conduits.StreamSinkConduit res
        end local 8 // java.lang.String contentLengthHeader
        34: .line 254
      StackMap locals: java.lang.String
      StackMap stack:
            aload 5 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONTENT_LENGTH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        35: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            iload 1 /* headRequest */
            aload 4 /* channel */
            aload 5 /* responseHeaders */
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.terminateResponseListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            aload 7 /* transferEncodingHeader */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.handleResponseConduit:(Lio/undertow/server/HttpServerExchange;ZLorg/xnio/conduits/StreamSinkConduit;Lio/undertow/util/HeaderMap;Lio/undertow/conduits/ConduitListener;Ljava/lang/String;)Lorg/xnio/conduits/StreamSinkConduit;
            areturn
        end local 7 // java.lang.String transferEncodingHeader
        end local 6 // java.lang.String connection
        end local 5 // io.undertow.util.HeaderMap responseHeaders
        end local 4 // org.xnio.conduits.StreamSinkConduit channel
        end local 3 // io.undertow.server.protocol.http.HttpResponseConduit responseConduit
        end local 2 // io.undertow.server.protocol.http.HttpServerConnection serverConnection
        end local 1 // boolean headRequest
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   36     0                exchange  Lio/undertow/server/HttpServerExchange;
            2   36     1             headRequest  Z
            3   36     2        serverConnection  Lio/undertow/server/protocol/http/HttpServerConnection;
            4   36     3         responseConduit  Lio/undertow/server/protocol/http/HttpResponseConduit;
            6   36     4                 channel  Lorg/xnio/conduits/StreamSinkConduit;
           15   36     5         responseHeaders  Lio/undertow/util/HeaderMap;
           16   36     6              connection  Ljava/lang/String;
           28   36     7  transferEncodingHeader  Ljava/lang/String;
           30   34     8     contentLengthHeader  Ljava/lang/String;
           32   34     9                     res  Lorg/xnio/conduits/StreamSinkConduit;
    MethodParameters:
          Name  Flags
      exchange  final

  private static org.xnio.conduits.StreamSinkConduit handleFixedLength(io.undertow.server.HttpServerExchange, boolean, org.xnio.conduits.StreamSinkConduit, io.undertow.util.HeaderMap, java.lang.String, io.undertow.server.protocol.http.HttpServerConnection);
    descriptor: (Lio/undertow/server/HttpServerExchange;ZLorg/xnio/conduits/StreamSinkConduit;Lio/undertow/util/HeaderMap;Ljava/lang/String;Lio/undertow/server/protocol/http/HttpServerConnection;)Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=9, args_size=6
        start local 0 // io.undertow.server.HttpServerExchange exchange
        start local 1 // boolean headRequest
        start local 2 // org.xnio.conduits.StreamSinkConduit channel
        start local 3 // io.undertow.util.HeaderMap responseHeaders
        start local 4 // java.lang.String contentLengthHeader
        start local 5 // io.undertow.server.protocol.http.HttpServerConnection connection
         0: .line 261
            aload 4 /* contentLengthHeader */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.parsePositiveLong:(Ljava/lang/String;)J
            lstore 6 /* contentLength */
        start local 6 // long contentLength
         1: .line 262
            iload 1 /* headRequest */
            ifeq 4
         2: .line 263
            aload 2 /* channel */
         3: areturn
         4: .line 266
      StackMap locals: long
      StackMap stack:
            aload 5 /* connection */
            invokevirtual io.undertow.server.protocol.http.HttpServerConnection.getFixedLengthStreamSinkConduit:()Lio/undertow/server/protocol/http/ServerFixedLengthStreamSinkConduit;
            astore 8 /* fixed */
        start local 8 // io.undertow.server.protocol.http.ServerFixedLengthStreamSinkConduit fixed
         5: .line 267
            aload 8 /* fixed */
            lload 6 /* contentLength */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.protocol.http.ServerFixedLengthStreamSinkConduit.reset:(JLio/undertow/server/HttpServerExchange;)V
         6: .line 268
            aload 8 /* fixed */
         7: areturn
        end local 8 // io.undertow.server.protocol.http.ServerFixedLengthStreamSinkConduit fixed
        end local 6 // long contentLength
         8: .line 269
      StackMap locals: io.undertow.server.HttpServerExchange int org.xnio.conduits.StreamSinkConduit io.undertow.util.HeaderMap java.lang.String io.undertow.server.protocol.http.HttpServerConnection
      StackMap stack: java.lang.NumberFormatException
            pop
         9: .line 271
            aload 3 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONTENT_LENGTH:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HeaderMap.remove:(Lio/undertow/util/HttpString;)Ljava/util/Collection;
            pop
        10: .line 273
            aconst_null
            areturn
        end local 5 // io.undertow.server.protocol.http.HttpServerConnection connection
        end local 4 // java.lang.String contentLengthHeader
        end local 3 // io.undertow.util.HeaderMap responseHeaders
        end local 2 // org.xnio.conduits.StreamSinkConduit channel
        end local 1 // boolean headRequest
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   11     0             exchange  Lio/undertow/server/HttpServerExchange;
            0   11     1          headRequest  Z
            0   11     2              channel  Lorg/xnio/conduits/StreamSinkConduit;
            0   11     3      responseHeaders  Lio/undertow/util/HeaderMap;
            0   11     4  contentLengthHeader  Ljava/lang/String;
            0   11     5           connection  Lio/undertow/server/protocol/http/HttpServerConnection;
            1    8     6        contentLength  J
            5    8     8                fixed  Lio/undertow/server/protocol/http/ServerFixedLengthStreamSinkConduit;
      Exception table:
        from    to  target  type
           0     3       8  Class java.lang.NumberFormatException
           4     7       8  Class java.lang.NumberFormatException
    MethodParameters:
                     Name  Flags
      exchange             
      headRequest          
      channel              
      responseHeaders      
      contentLengthHeader  
      connection           

  private static org.xnio.conduits.StreamSinkConduit handleResponseConduit(io.undertow.server.HttpServerExchange, boolean, org.xnio.conduits.StreamSinkConduit, io.undertow.util.HeaderMap, io.undertow.conduits.ConduitListener<org.xnio.conduits.StreamSinkConduit>, java.lang.String);
    descriptor: (Lio/undertow/server/HttpServerExchange;ZLorg/xnio/conduits/StreamSinkConduit;Lio/undertow/util/HeaderMap;Lio/undertow/conduits/ConduitListener;Ljava/lang/String;)Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=9, locals=6, args_size=6
        start local 0 // io.undertow.server.HttpServerExchange exchange
        start local 1 // boolean headRequest
        start local 2 // org.xnio.conduits.StreamSinkConduit channel
        start local 3 // io.undertow.util.HeaderMap responseHeaders
        start local 4 // io.undertow.conduits.ConduitListener finishListener
        start local 5 // java.lang.String transferEncodingHeader
         0: .line 278
            aload 5 /* transferEncodingHeader */
            ifnonnull 17
         1: .line 279
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isHttp11:()Z
            ifeq 12
         2: .line 280
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isPersistent:()Z
            ifeq 9
         3: .line 281
            aload 3 /* responseHeaders */
            getstatic io.undertow.util.Headers.TRANSFER_ENCODING:Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.CHUNKED:Lio/undertow/util/HttpString;
            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
         4: .line 283
            iload 1 /* headRequest */
            ifeq 6
         5: .line 284
            aload 2 /* channel */
            areturn
         6: .line 286
      StackMap locals:
      StackMap stack:
            new io.undertow.conduits.ChunkedStreamSinkConduit
            dup
            aload 2 /* channel */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            invokevirtual io.undertow.server.ServerConnection.getByteBufferPool:()Lio/undertow/connector/ByteBufferPool;
            iconst_1
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isPersistent:()Z
            ifeq 7
            iconst_0
            goto 8
      StackMap locals: io.undertow.server.HttpServerExchange int org.xnio.conduits.StreamSinkConduit io.undertow.util.HeaderMap io.undertow.conduits.ConduitListener java.lang.String
      StackMap stack: new 6 new 6 org.xnio.conduits.StreamSinkConduit io.undertow.connector.ByteBufferPool int
         7: iconst_1
      StackMap locals: io.undertow.server.HttpServerExchange int org.xnio.conduits.StreamSinkConduit io.undertow.util.HeaderMap io.undertow.conduits.ConduitListener java.lang.String
      StackMap stack: new 6 new 6 org.xnio.conduits.StreamSinkConduit io.undertow.connector.ByteBufferPool int int
         8: aload 3 /* responseHeaders */
            aload 4 /* finishListener */
            aload 0 /* exchange */
            invokespecial io.undertow.conduits.ChunkedStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/connector/ByteBufferPool;ZZLio/undertow/util/HeaderMap;Lio/undertow/conduits/ConduitListener;Lio/undertow/util/Attachable;)V
            areturn
         9: .line 288
      StackMap locals:
      StackMap stack:
            iload 1 /* headRequest */
            ifeq 11
        10: .line 289
            aload 2 /* channel */
            areturn
        11: .line 291
      StackMap locals:
      StackMap stack:
            new io.undertow.conduits.FinishableStreamSinkConduit
            dup
            aload 2 /* channel */
            aload 4 /* finishListener */
            invokespecial io.undertow.conduits.FinishableStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;)V
            areturn
        12: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            iconst_0
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        13: .line 295
            aload 3 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.CLOSE:Lio/undertow/util/HttpString;
            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
        14: .line 296
            iload 1 /* headRequest */
            ifeq 16
        15: .line 297
            aload 2 /* channel */
            areturn
        16: .line 299
      StackMap locals:
      StackMap stack:
            new io.undertow.conduits.FinishableStreamSinkConduit
            dup
            aload 2 /* channel */
            aload 4 /* finishListener */
            invokespecial io.undertow.conduits.FinishableStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;)V
            areturn
        17: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* exchange */
            aload 2 /* channel */
            aload 4 /* finishListener */
            aload 3 /* responseHeaders */
            aload 5 /* transferEncodingHeader */
            iload 1 /* headRequest */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.handleExplicitTransferEncoding:(Lio/undertow/server/HttpServerExchange;Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;Lio/undertow/util/HeaderMap;Ljava/lang/String;Z)Lorg/xnio/conduits/StreamSinkConduit;
            areturn
        end local 5 // java.lang.String transferEncodingHeader
        end local 4 // io.undertow.conduits.ConduitListener finishListener
        end local 3 // io.undertow.util.HeaderMap responseHeaders
        end local 2 // org.xnio.conduits.StreamSinkConduit channel
        end local 1 // boolean headRequest
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   18     0                exchange  Lio/undertow/server/HttpServerExchange;
            0   18     1             headRequest  Z
            0   18     2                 channel  Lorg/xnio/conduits/StreamSinkConduit;
            0   18     3         responseHeaders  Lio/undertow/util/HeaderMap;
            0   18     4          finishListener  Lio/undertow/conduits/ConduitListener<Lorg/xnio/conduits/StreamSinkConduit;>;
            0   18     5  transferEncodingHeader  Ljava/lang/String;
    Signature: (Lio/undertow/server/HttpServerExchange;ZLorg/xnio/conduits/StreamSinkConduit;Lio/undertow/util/HeaderMap;Lio/undertow/conduits/ConduitListener<Lorg/xnio/conduits/StreamSinkConduit;>;Ljava/lang/String;)Lorg/xnio/conduits/StreamSinkConduit;
    MethodParameters:
                        Name  Flags
      exchange                
      headRequest             
      channel                 
      responseHeaders         
      finishListener          
      transferEncodingHeader  

  private static org.xnio.conduits.StreamSinkConduit handleExplicitTransferEncoding(io.undertow.server.HttpServerExchange, org.xnio.conduits.StreamSinkConduit, io.undertow.conduits.ConduitListener<org.xnio.conduits.StreamSinkConduit>, io.undertow.util.HeaderMap, java.lang.String, boolean);
    descriptor: (Lio/undertow/server/HttpServerExchange;Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;Lio/undertow/util/HeaderMap;Ljava/lang/String;Z)Lorg/xnio/conduits/StreamSinkConduit;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=9, locals=8, args_size=6
        start local 0 // io.undertow.server.HttpServerExchange exchange
        start local 1 // org.xnio.conduits.StreamSinkConduit channel
        start local 2 // io.undertow.conduits.ConduitListener finishListener
        start local 3 // io.undertow.util.HeaderMap responseHeaders
        start local 4 // java.lang.String transferEncodingHeader
        start local 5 // boolean headRequest
         0: .line 309
            new io.undertow.util.HttpString
            dup
            aload 4 /* transferEncodingHeader */
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            astore 6 /* transferEncoding */
        start local 6 // io.undertow.util.HttpString transferEncoding
         1: .line 310
            aload 6 /* transferEncoding */
            getstatic io.undertow.util.Headers.CHUNKED:Lio/undertow/util/HttpString;
            invokevirtual io.undertow.util.HttpString.equals:(Lio/undertow/util/HttpString;)Z
            ifeq 10
         2: .line 311
            iload 5 /* headRequest */
            ifeq 4
         3: .line 312
            aload 1 /* channel */
            areturn
         4: .line 314
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 0 /* exchange */
            getstatic io.undertow.server.protocol.http.HttpAttachments.PRE_CHUNKED_RESPONSE:Lio/undertow/util/AttachmentKey;
            invokevirtual io.undertow.server.HttpServerExchange.getAttachment:(Lio/undertow/util/AttachmentKey;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 7 /* preChunked */
        start local 7 // java.lang.Boolean preChunked
         5: .line 315
            aload 7 /* preChunked */
            ifnull 7
            aload 7 /* preChunked */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 7
         6: .line 316
            new io.undertow.conduits.PreChunkedStreamSinkConduit
            dup
            aload 1 /* channel */
            aload 2 /* finishListener */
            aload 0 /* exchange */
            invokespecial io.undertow.conduits.PreChunkedStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;Lio/undertow/util/Attachable;)V
            areturn
         7: .line 318
      StackMap locals: java.lang.Boolean
      StackMap stack:
            new io.undertow.conduits.ChunkedStreamSinkConduit
            dup
            aload 1 /* channel */
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.getConnection:()Lio/undertow/server/ServerConnection;
            invokevirtual io.undertow.server.ServerConnection.getByteBufferPool:()Lio/undertow/connector/ByteBufferPool;
            iconst_1
            aload 0 /* exchange */
            invokevirtual io.undertow.server.HttpServerExchange.isPersistent:()Z
            ifeq 8
            iconst_0
            goto 9
      StackMap locals: io.undertow.server.HttpServerExchange org.xnio.conduits.StreamSinkConduit io.undertow.conduits.ConduitListener io.undertow.util.HeaderMap java.lang.String int io.undertow.util.HttpString java.lang.Boolean
      StackMap stack: new 7 new 7 org.xnio.conduits.StreamSinkConduit io.undertow.connector.ByteBufferPool int
         8: iconst_1
      StackMap locals: io.undertow.server.HttpServerExchange org.xnio.conduits.StreamSinkConduit io.undertow.conduits.ConduitListener io.undertow.util.HeaderMap java.lang.String int io.undertow.util.HttpString java.lang.Boolean
      StackMap stack: new 7 new 7 org.xnio.conduits.StreamSinkConduit io.undertow.connector.ByteBufferPool int int
         9: aload 3 /* responseHeaders */
            aload 2 /* finishListener */
            aload 0 /* exchange */
            invokespecial io.undertow.conduits.ChunkedStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/connector/ByteBufferPool;ZZLio/undertow/util/HeaderMap;Lio/undertow/conduits/ConduitListener;Lio/undertow/util/Attachable;)V
            areturn
        end local 7 // java.lang.Boolean preChunked
        10: .line 322
      StackMap locals:
      StackMap stack:
            iload 5 /* headRequest */
            ifeq 12
        11: .line 323
            aload 1 /* channel */
            areturn
        12: .line 325
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.server.protocol.http.HttpTransferEncoding.log:Lorg/jboss/logging/Logger;
            ldc "Cancelling persistence because response is identity with no content length"
            invokevirtual org.jboss.logging.Logger.trace:(Ljava/lang/Object;)V
        13: .line 327
            aload 0 /* exchange */
            iconst_0
            invokevirtual io.undertow.server.HttpServerExchange.setPersistent:(Z)Lio/undertow/server/HttpServerExchange;
            pop
        14: .line 328
            aload 3 /* responseHeaders */
            getstatic io.undertow.util.Headers.CONNECTION:Lio/undertow/util/HttpString;
            getstatic io.undertow.util.Headers.CLOSE:Lio/undertow/util/HttpString;
            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
        15: .line 329
            new io.undertow.conduits.FinishableStreamSinkConduit
            dup
            aload 1 /* channel */
            aload 0 /* exchange */
            invokestatic io.undertow.server.protocol.http.HttpTransferEncoding.terminateResponseListener:(Lio/undertow/server/HttpServerExchange;)Lio/undertow/conduits/ConduitListener;
            invokespecial io.undertow.conduits.FinishableStreamSinkConduit.<init>:(Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener;)V
            areturn
        end local 6 // io.undertow.util.HttpString transferEncoding
        end local 5 // boolean headRequest
        end local 4 // java.lang.String transferEncodingHeader
        end local 3 // io.undertow.util.HeaderMap responseHeaders
        end local 2 // io.undertow.conduits.ConduitListener finishListener
        end local 1 // org.xnio.conduits.StreamSinkConduit channel
        end local 0 // io.undertow.server.HttpServerExchange exchange
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   16     0                exchange  Lio/undertow/server/HttpServerExchange;
            0   16     1                 channel  Lorg/xnio/conduits/StreamSinkConduit;
            0   16     2          finishListener  Lio/undertow/conduits/ConduitListener<Lorg/xnio/conduits/StreamSinkConduit;>;
            0   16     3         responseHeaders  Lio/undertow/util/HeaderMap;
            0   16     4  transferEncodingHeader  Ljava/lang/String;
            0   16     5             headRequest  Z
            1   16     6        transferEncoding  Lio/undertow/util/HttpString;
            5   10     7              preChunked  Ljava/lang/Boolean;
    Signature: (Lio/undertow/server/HttpServerExchange;Lorg/xnio/conduits/StreamSinkConduit;Lio/undertow/conduits/ConduitListener<Lorg/xnio/conduits/StreamSinkConduit;>;Lio/undertow/util/HeaderMap;Ljava/lang/String;Z)Lorg/xnio/conduits/StreamSinkConduit;
    MethodParameters:
                        Name  Flags
      exchange                
      channel                 
      finishListener          
      responseHeaders         
      transferEncodingHeader  
      headRequest             

  public static long parsePositiveLong(java.lang.String);
    descriptor: (Ljava/lang/String;)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=10, args_size=1
        start local 0 // java.lang.String str
         0: .line 340
            lconst_0
            lstore 1 /* value */
        start local 1 // long value
         1: .line 341
            aload 0 /* str */
            invokevirtual java.lang.String.length:()I
            istore 3 /* length */
        start local 3 // int length
         2: .line 343
            iload 3 /* length */
            ifne 4
         3: .line 344
            new java.lang.NumberFormatException
            dup
            aload 0 /* str */
            invokespecial java.lang.NumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 347
      StackMap locals: long int
      StackMap stack:
            lconst_1
            lstore 4 /* multiplier */
        start local 4 // long multiplier
         5: .line 348
            iload 3 /* length */
            iconst_1
            isub
            istore 6 /* i */
        start local 6 // int i
         6: goto 14
         7: .line 349
      StackMap locals: long int
      StackMap stack:
            aload 0 /* str */
            iload 6 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        start local 7 // char c
         8: .line 351
            iload 7 /* c */
            bipush 48
            if_icmplt 9
            iload 7 /* c */
            bipush 57
            if_icmple 10
         9: .line 352
      StackMap locals: int
      StackMap stack:
            new java.lang.NumberFormatException
            dup
            aload 0 /* str */
            invokespecial java.lang.NumberFormatException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 354
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            bipush 48
            isub
            i2l
            lstore 8 /* digit */
        start local 8 // long digit
        11: .line 355
            lload 1 /* value */
            lload 8 /* digit */
            lload 4 /* multiplier */
            lmul
            ladd
            lstore 1 /* value */
        12: .line 356
            lload 4 /* multiplier */
            ldc 10
            lmul
            lstore 4 /* multiplier */
        end local 8 // long digit
        end local 7 // char c
        13: .line 348
            iinc 6 /* i */ -1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            ifge 7
        end local 6 // int i
        15: .line 358
            lload 1 /* value */
            lreturn
        end local 4 // long multiplier
        end local 3 // int length
        end local 1 // long value
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0         str  Ljava/lang/String;
            1   16     1       value  J
            2   16     3      length  I
            5   16     4  multiplier  J
            6   15     6           i  I
            8   13     7           c  C
           11   13     8       digit  J
    MethodParameters:
      Name  Flags
      str   
}
SourceFile: "HttpTransferEncoding.java"
NestMembers:
  io.undertow.server.protocol.http.HttpTransferEncoding$1  io.undertow.server.protocol.http.HttpTransferEncoding$2  io.undertow.server.protocol.http.HttpTransferEncoding$3
InnerClasses:
  io.undertow.server.protocol.http.HttpTransferEncoding$1
  io.undertow.server.protocol.http.HttpTransferEncoding$2
  io.undertow.server.protocol.http.HttpTransferEncoding$3