public class io.netty.example.spdy.server.SpdyOrHttpHandler extends io.netty.handler.ssl.ApplicationProtocolNegotiationHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.example.spdy.server.SpdyOrHttpHandler
  super_class: io.netty.handler.ssl.ApplicationProtocolNegotiationHandler
{
  private static final int MAX_CONTENT_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 102400

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.example.spdy.server.SpdyOrHttpHandler this
         0: .line 40
            aload 0 /* this */
            ldc "http/1.1"
            invokespecial io.netty.handler.ssl.ApplicationProtocolNegotiationHandler.<init>:(Ljava/lang/String;)V
         1: .line 41
            return
        end local 0 // io.netty.example.spdy.server.SpdyOrHttpHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/example/spdy/server/SpdyOrHttpHandler;

  protected void configurePipeline(io.netty.channel.ChannelHandlerContext, java.lang.String);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.example.spdy.server.SpdyOrHttpHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.String protocol
         0: .line 45
            ldc "spdy/3.1"
            aload 2 /* protocol */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
         1: .line 46
            aload 1 /* ctx */
            getstatic io.netty.handler.codec.spdy.SpdyVersion.SPDY_3_1:Lio/netty/handler/codec/spdy/SpdyVersion;
            invokestatic io.netty.example.spdy.server.SpdyOrHttpHandler.configureSpdy:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdyVersion;)V
         2: .line 47
            return
         3: .line 50
      StackMap locals:
      StackMap stack:
            ldc "http/1.1"
            aload 2 /* protocol */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 51
            aload 1 /* ctx */
            invokestatic io.netty.example.spdy.server.SpdyOrHttpHandler.configureHttp1:(Lio/netty/channel/ChannelHandlerContext;)V
         5: .line 52
            return
         6: .line 55
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "unknown protocol: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* protocol */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String protocol
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.example.spdy.server.SpdyOrHttpHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/netty/example/spdy/server/SpdyOrHttpHandler;
            0    7     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            0    7     2  protocol  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      ctx       
      protocol  

  private static void configureSpdy(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.spdy.SpdyVersion);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/spdy/SpdyVersion;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=8, locals=3, args_size=2
        start local 0 // io.netty.channel.ChannelHandlerContext ctx
        start local 1 // io.netty.handler.codec.spdy.SpdyVersion version
         0: .line 59
            aload 0 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            astore 2 /* p */
        start local 2 // io.netty.channel.ChannelPipeline p
         1: .line 60
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.spdy.SpdyFrameCodec
            dup
            aload 1 /* version */
            invokespecial io.netty.handler.codec.spdy.SpdyFrameCodec.<init>:(Lio/netty/handler/codec/spdy/SpdyVersion;)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         2: .line 61
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.spdy.SpdySessionHandler
            dup
            aload 1 /* version */
            iconst_1
            invokespecial io.netty.handler.codec.spdy.SpdySessionHandler.<init>:(Lio/netty/handler/codec/spdy/SpdyVersion;Z)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         3: .line 62
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.spdy.SpdyHttpEncoder
            dup
            aload 1 /* version */
            invokespecial io.netty.handler.codec.spdy.SpdyHttpEncoder.<init>:(Lio/netty/handler/codec/spdy/SpdyVersion;)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         4: .line 63
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.spdy.SpdyHttpDecoder
            dup
            aload 1 /* version */
            ldc 102400
            invokespecial io.netty.handler.codec.spdy.SpdyHttpDecoder.<init>:(Lio/netty/handler/codec/spdy/SpdyVersion;I)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         5: .line 64
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.spdy.SpdyHttpResponseStreamIdHandler
            dup
            invokespecial io.netty.handler.codec.spdy.SpdyHttpResponseStreamIdHandler.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         6: .line 65
            aload 2 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.example.spdy.server.SpdyServerHandler
            dup
            invokespecial io.netty.example.spdy.server.SpdyServerHandler.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         7: .line 66
            return
        end local 2 // io.netty.channel.ChannelPipeline p
        end local 1 // io.netty.handler.codec.spdy.SpdyVersion version
        end local 0 // io.netty.channel.ChannelHandlerContext ctx
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    8     1  version  Lio/netty/handler/codec/spdy/SpdyVersion;
            1    8     2        p  Lio/netty/channel/ChannelPipeline;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
         Name  Flags
      ctx      
      version  

  private static void configureHttp1(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 69
            aload 0 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            astore 1 /* p */
        start local 1 // io.netty.channel.ChannelPipeline p
         1: .line 70
            aload 1 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.http.HttpServerCodec
            dup
            invokespecial io.netty.handler.codec.http.HttpServerCodec.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         2: .line 71
            aload 1 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.http.HttpObjectAggregator
            dup
            ldc 102400
            invokespecial io.netty.handler.codec.http.HttpObjectAggregator.<init>:(I)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         3: .line 72
            aload 1 /* p */
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.example.spdy.server.SpdyServerHandler
            dup
            invokespecial io.netty.example.spdy.server.SpdyServerHandler.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         4: .line 73
            return
        end local 1 // io.netty.channel.ChannelPipeline p
        end local 0 // io.netty.channel.ChannelHandlerContext ctx
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   ctx  Lio/netty/channel/ChannelHandlerContext;
            1    5     1     p  Lio/netty/channel/ChannelPipeline;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
}
SourceFile: "SpdyOrHttpHandler.java"