public class io.netty.channel.sctp.DefaultSctpServerChannelConfig extends io.netty.channel.DefaultChannelConfig implements io.netty.channel.sctp.SctpServerChannelConfig
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.channel.sctp.DefaultSctpServerChannelConfig
  super_class: io.netty.channel.DefaultChannelConfig
{
  private final com.sun.nio.sctp.SctpServerChannel javaChannel;
    descriptor: Lcom/sun/nio/sctp/SctpServerChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(io.netty.channel.sctp.SctpServerChannel, com.sun.nio.sctp.SctpServerChannel);
    descriptor: (Lio/netty/channel/sctp/SctpServerChannel;Lcom/sun/nio/sctp/SctpServerChannel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.sctp.SctpServerChannel channel
        start local 2 // com.sun.nio.sctp.SctpServerChannel javaChannel
         0: .line 45
            aload 0 /* this */
            aload 1 /* channel */
            invokespecial io.netty.channel.DefaultChannelConfig.<init>:(Lio/netty/channel/Channel;)V
         1: .line 38
            aload 0 /* this */
            getstatic io.netty.util.NetUtil.SOMAXCONN:I
            putfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.backlog:I
         2: .line 46
            aload 2 /* javaChannel */
            ifnonnull 4
         3: .line 47
            new java.lang.NullPointerException
            dup
            ldc "javaChannel"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 49
      StackMap locals: io.netty.channel.sctp.DefaultSctpServerChannelConfig io.netty.channel.sctp.SctpServerChannel com.sun.nio.sctp.SctpServerChannel
      StackMap stack:
            aload 0 /* this */
            aload 2 /* javaChannel */
            putfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
         5: .line 50
            return
        end local 2 // com.sun.nio.sctp.SctpServerChannel javaChannel
        end local 1 // io.netty.channel.sctp.SctpServerChannel channel
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    6     1      channel  Lio/netty/channel/sctp/SctpServerChannel;
            0    6     2  javaChannel  Lcom/sun/nio/sctp/SctpServerChannel;
    MethodParameters:
             Name  Flags
      channel      
      javaChannel  

  public java.util.Map<io.netty.channel.ChannelOption<?>, java.lang.Object> getOptions();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
         0: .line 54
            aload 0 /* this */
         1: .line 55
            aload 0 /* this */
            invokespecial io.netty.channel.DefaultChannelConfig.getOptions:()Ljava/util/Map;
            iconst_3
            anewarray io.netty.channel.ChannelOption
            dup
            iconst_0
         2: .line 56
            getstatic io.netty.channel.ChannelOption.SO_RCVBUF:Lio/netty/channel/ChannelOption;
            aastore
            dup
            iconst_1
            getstatic io.netty.channel.ChannelOption.SO_SNDBUF:Lio/netty/channel/ChannelOption;
            aastore
            dup
            iconst_2
            getstatic io.netty.channel.sctp.SctpChannelOption.SCTP_INIT_MAXSTREAMS:Lio/netty/channel/ChannelOption;
            aastore
         3: .line 54
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.getOptions:(Ljava/util/Map;[Lio/netty/channel/ChannelOption;)Ljava/util/Map;
            areturn
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
    Signature: ()Ljava/util/Map<Lio/netty/channel/ChannelOption<*>;Ljava/lang/Object;>;

  public <T> T getOption(io.netty.channel.ChannelOption<T>);
    descriptor: (Lio/netty/channel/ChannelOption;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.ChannelOption option
         0: .line 62
            aload 1 /* option */
            getstatic io.netty.channel.ChannelOption.SO_RCVBUF:Lio/netty/channel/ChannelOption;
            if_acmpne 2
         1: .line 63
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.getReceiveBufferSize:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
         2: .line 65
      StackMap locals:
      StackMap stack:
            aload 1 /* option */
            getstatic io.netty.channel.ChannelOption.SO_SNDBUF:Lio/netty/channel/ChannelOption;
            if_acmpne 4
         3: .line 66
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.getSendBufferSize:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
         4: .line 68
      StackMap locals:
      StackMap stack:
            aload 1 /* option */
            getstatic io.netty.channel.sctp.SctpChannelOption.SCTP_INIT_MAXSTREAMS:Lio/netty/channel/ChannelOption;
            if_acmpne 6
         5: .line 69
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.getInitMaxStreams:()Lcom/sun/nio/sctp/SctpStandardSocketOptions$InitMaxStreams;
            areturn
         6: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* option */
            invokespecial io.netty.channel.DefaultChannelConfig.getOption:(Lio/netty/channel/ChannelOption;)Ljava/lang/Object;
            areturn
        end local 1 // io.netty.channel.ChannelOption option
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    7     1  option  Lio/netty/channel/ChannelOption<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/netty/channel/ChannelOption<TT;>;)TT;
    MethodParameters:
        Name  Flags
      option  

  public <T> boolean setOption(io.netty.channel.ChannelOption<T>, );
    descriptor: (Lio/netty/channel/ChannelOption;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.ChannelOption option
        start local 2 // java.lang.Object value
         0: .line 76
            aload 0 /* this */
            aload 1 /* option */
            aload 2 /* value */
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.validate:(Lio/netty/channel/ChannelOption;Ljava/lang/Object;)V
         1: .line 78
            aload 1 /* option */
            getstatic io.netty.channel.ChannelOption.SO_RCVBUF:Lio/netty/channel/ChannelOption;
            if_acmpne 4
         2: .line 79
            aload 0 /* this */
            aload 2 /* value */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setReceiveBufferSize:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            pop
         3: .line 80
            goto 11
      StackMap locals:
      StackMap stack:
         4: aload 1 /* option */
            getstatic io.netty.channel.ChannelOption.SO_SNDBUF:Lio/netty/channel/ChannelOption;
            if_acmpne 7
         5: .line 81
            aload 0 /* this */
            aload 2 /* value */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setSendBufferSize:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            pop
         6: .line 82
            goto 11
      StackMap locals:
      StackMap stack:
         7: aload 1 /* option */
            getstatic io.netty.channel.sctp.SctpChannelOption.SCTP_INIT_MAXSTREAMS:Lio/netty/channel/ChannelOption;
            if_acmpne 10
         8: .line 83
            aload 0 /* this */
            aload 2 /* value */
            checkcast com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setInitMaxStreams:(Lcom/sun/nio/sctp/SctpStandardSocketOptions$InitMaxStreams;)Lio/netty/channel/sctp/SctpServerChannelConfig;
            pop
         9: .line 84
            goto 11
        10: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* option */
            aload 2 /* value */
            invokespecial io.netty.channel.DefaultChannelConfig.setOption:(Lio/netty/channel/ChannelOption;Ljava/lang/Object;)Z
            ireturn
        11: .line 88
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // java.lang.Object value
        end local 1 // io.netty.channel.ChannelOption option
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0   12     1  option  Lio/netty/channel/ChannelOption<TT;>;
            0   12     2   value  TT;
    Signature: <T:Ljava/lang/Object;>(Lio/netty/channel/ChannelOption<TT;>;TT;)Z
    MethodParameters:
        Name  Flags
      option  
      value   

  public int getSendBufferSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
         0: .line 94
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SO_SNDBUF:Lcom/sun/nio/sctp/SctpSocketOption;
            invokevirtual com.sun.nio.sctp.SctpServerChannel.getOption:(Lcom/sun/nio/sctp/SctpSocketOption;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
         1: ireturn
         2: .line 95
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 96
            new io.netty.channel.ChannelException
            dup
            aload 1 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public io.netty.channel.sctp.SctpServerChannelConfig setSendBufferSize(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int sendBufferSize
         0: .line 103
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SO_SNDBUF:Lcom/sun/nio/sctp/SctpSocketOption;
            iload 1 /* sendBufferSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.sun.nio.sctp.SctpServerChannel.setOption:(Lcom/sun/nio/sctp/SctpSocketOption;Ljava/lang/Object;)Lcom/sun/nio/sctp/SctpServerChannel;
            pop
         1: .line 104
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 105
            new io.netty.channel.ChannelException
            dup
            aload 2 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
         4: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int sendBufferSize
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    5     1  sendBufferSize  I
            3    4     2               e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
                Name  Flags
      sendBufferSize  

  public int getReceiveBufferSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
         0: .line 113
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SO_RCVBUF:Lcom/sun/nio/sctp/SctpSocketOption;
            invokevirtual com.sun.nio.sctp.SctpServerChannel.getOption:(Lcom/sun/nio/sctp/SctpSocketOption;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
         1: ireturn
         2: .line 114
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 115
            new io.netty.channel.ChannelException
            dup
            aload 1 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public io.netty.channel.sctp.SctpServerChannelConfig setReceiveBufferSize(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int receiveBufferSize
         0: .line 122
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SO_RCVBUF:Lcom/sun/nio/sctp/SctpSocketOption;
            iload 1 /* receiveBufferSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.sun.nio.sctp.SctpServerChannel.setOption:(Lcom/sun/nio/sctp/SctpSocketOption;Ljava/lang/Object;)Lcom/sun/nio/sctp/SctpServerChannel;
            pop
         1: .line 123
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 124
            new io.netty.channel.ChannelException
            dup
            aload 2 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
         4: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int receiveBufferSize
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    5     1  receiveBufferSize  I
            3    4     2                  e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
                   Name  Flags
      receiveBufferSize  

  public com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams getInitMaxStreams();
    descriptor: ()Lcom/sun/nio/sctp/SctpStandardSocketOptions$InitMaxStreams;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
         0: .line 132
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SCTP_INIT_MAXSTREAMS:Lcom/sun/nio/sctp/SctpSocketOption;
            invokevirtual com.sun.nio.sctp.SctpServerChannel.getOption:(Lcom/sun/nio/sctp/SctpSocketOption;)Ljava/lang/Object;
            checkcast com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams
         1: areturn
         2: .line 133
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 134
            new io.netty.channel.ChannelException
            dup
            aload 1 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public io.netty.channel.sctp.SctpServerChannelConfig setInitMaxStreams(com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams);
    descriptor: (Lcom/sun/nio/sctp/SctpStandardSocketOptions$InitMaxStreams;)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams initMaxStreams
         0: .line 141
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.javaChannel:Lcom/sun/nio/sctp/SctpServerChannel;
            getstatic com.sun.nio.sctp.SctpStandardSocketOptions.SCTP_INIT_MAXSTREAMS:Lcom/sun/nio/sctp/SctpSocketOption;
            aload 1 /* initMaxStreams */
            invokevirtual com.sun.nio.sctp.SctpServerChannel.setOption:(Lcom/sun/nio/sctp/SctpSocketOption;Ljava/lang/Object;)Lcom/sun/nio/sctp/SctpServerChannel;
            pop
         1: .line 142
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 143
            new io.netty.channel.ChannelException
            dup
            aload 2 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
         4: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams initMaxStreams
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    5     1  initMaxStreams  Lcom/sun/nio/sctp/SctpStandardSocketOptions$InitMaxStreams;
            3    4     2               e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
                Name  Flags
      initMaxStreams  

  public int getBacklog();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
         0: .line 150
            aload 0 /* this */
            getfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.backlog:I
            ireturn
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;

  public io.netty.channel.sctp.SctpServerChannelConfig setBacklog(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int backlog
         0: .line 155
            iload 1 /* backlog */
            ifge 2
         1: .line 156
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "backlog: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* backlog */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* backlog */
            putfield io.netty.channel.sctp.DefaultSctpServerChannelConfig.backlog:I
         3: .line 159
            aload 0 /* this */
            areturn
        end local 1 // int backlog
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    4     1  backlog  I
    MethodParameters:
         Name  Flags
      backlog  

  public io.netty.channel.sctp.SctpServerChannelConfig setMaxMessagesPerRead(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int maxMessagesPerRead
         0: .line 165
            aload 0 /* this */
            iload 1 /* maxMessagesPerRead */
            invokespecial io.netty.channel.DefaultChannelConfig.setMaxMessagesPerRead:(I)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 166
            aload 0 /* this */
            areturn
        end local 1 // int maxMessagesPerRead
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  maxMessagesPerRead  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                    Name  Flags
      maxMessagesPerRead  

  public io.netty.channel.sctp.SctpServerChannelConfig setWriteSpinCount(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int writeSpinCount
         0: .line 171
            aload 0 /* this */
            iload 1 /* writeSpinCount */
            invokespecial io.netty.channel.DefaultChannelConfig.setWriteSpinCount:(I)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 172
            aload 0 /* this */
            areturn
        end local 1 // int writeSpinCount
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  writeSpinCount  I
    MethodParameters:
                Name  Flags
      writeSpinCount  

  public io.netty.channel.sctp.SctpServerChannelConfig setConnectTimeoutMillis(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int connectTimeoutMillis
         0: .line 177
            aload 0 /* this */
            iload 1 /* connectTimeoutMillis */
            invokespecial io.netty.channel.DefaultChannelConfig.setConnectTimeoutMillis:(I)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 178
            aload 0 /* this */
            areturn
        end local 1 // int connectTimeoutMillis
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  connectTimeoutMillis  I
    MethodParameters:
                      Name  Flags
      connectTimeoutMillis  

  public io.netty.channel.sctp.SctpServerChannelConfig setAllocator(io.netty.buffer.ByteBufAllocator);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.buffer.ByteBufAllocator allocator
         0: .line 183
            aload 0 /* this */
            aload 1 /* allocator */
            invokespecial io.netty.channel.DefaultChannelConfig.setAllocator:(Lio/netty/buffer/ByteBufAllocator;)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 184
            aload 0 /* this */
            areturn
        end local 1 // io.netty.buffer.ByteBufAllocator allocator
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  allocator  Lio/netty/buffer/ByteBufAllocator;
    MethodParameters:
           Name  Flags
      allocator  

  public io.netty.channel.sctp.SctpServerChannelConfig setRecvByteBufAllocator(io.netty.channel.RecvByteBufAllocator);
    descriptor: (Lio/netty/channel/RecvByteBufAllocator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.RecvByteBufAllocator allocator
         0: .line 189
            aload 0 /* this */
            aload 1 /* allocator */
            invokespecial io.netty.channel.DefaultChannelConfig.setRecvByteBufAllocator:(Lio/netty/channel/RecvByteBufAllocator;)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 190
            aload 0 /* this */
            areturn
        end local 1 // io.netty.channel.RecvByteBufAllocator allocator
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  allocator  Lio/netty/channel/RecvByteBufAllocator;
    MethodParameters:
           Name  Flags
      allocator  

  public io.netty.channel.sctp.SctpServerChannelConfig setAutoRead(boolean);
    descriptor: (Z)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // boolean autoRead
         0: .line 195
            aload 0 /* this */
            iload 1 /* autoRead */
            invokespecial io.netty.channel.DefaultChannelConfig.setAutoRead:(Z)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 196
            aload 0 /* this */
            areturn
        end local 1 // boolean autoRead
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  autoRead  Z
    MethodParameters:
          Name  Flags
      autoRead  

  public io.netty.channel.sctp.SctpServerChannelConfig setAutoClose(boolean);
    descriptor: (Z)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // boolean autoClose
         0: .line 201
            aload 0 /* this */
            iload 1 /* autoClose */
            invokespecial io.netty.channel.DefaultChannelConfig.setAutoClose:(Z)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 202
            aload 0 /* this */
            areturn
        end local 1 // boolean autoClose
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  autoClose  Z
    MethodParameters:
           Name  Flags
      autoClose  

  public io.netty.channel.sctp.SctpServerChannelConfig setWriteBufferLowWaterMark(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int writeBufferLowWaterMark
         0: .line 207
            aload 0 /* this */
            iload 1 /* writeBufferLowWaterMark */
            invokespecial io.netty.channel.DefaultChannelConfig.setWriteBufferLowWaterMark:(I)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 208
            aload 0 /* this */
            areturn
        end local 1 // int writeBufferLowWaterMark
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  writeBufferLowWaterMark  I
    MethodParameters:
                         Name  Flags
      writeBufferLowWaterMark  

  public io.netty.channel.sctp.SctpServerChannelConfig setWriteBufferHighWaterMark(int);
    descriptor: (I)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // int writeBufferHighWaterMark
         0: .line 213
            aload 0 /* this */
            iload 1 /* writeBufferHighWaterMark */
            invokespecial io.netty.channel.DefaultChannelConfig.setWriteBufferHighWaterMark:(I)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 214
            aload 0 /* this */
            areturn
        end local 1 // int writeBufferHighWaterMark
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    2     0                      this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  writeBufferHighWaterMark  I
    MethodParameters:
                          Name  Flags
      writeBufferHighWaterMark  

  public io.netty.channel.sctp.SctpServerChannelConfig setWriteBufferWaterMark(io.netty.channel.WriteBufferWaterMark);
    descriptor: (Lio/netty/channel/WriteBufferWaterMark;)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.WriteBufferWaterMark writeBufferWaterMark
         0: .line 219
            aload 0 /* this */
            aload 1 /* writeBufferWaterMark */
            invokespecial io.netty.channel.DefaultChannelConfig.setWriteBufferWaterMark:(Lio/netty/channel/WriteBufferWaterMark;)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 220
            aload 0 /* this */
            areturn
        end local 1 // io.netty.channel.WriteBufferWaterMark writeBufferWaterMark
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  writeBufferWaterMark  Lio/netty/channel/WriteBufferWaterMark;
    MethodParameters:
                      Name  Flags
      writeBufferWaterMark  

  public io.netty.channel.sctp.SctpServerChannelConfig setMessageSizeEstimator(io.netty.channel.MessageSizeEstimator);
    descriptor: (Lio/netty/channel/MessageSizeEstimator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
        start local 1 // io.netty.channel.MessageSizeEstimator estimator
         0: .line 225
            aload 0 /* this */
            aload 1 /* estimator */
            invokespecial io.netty.channel.DefaultChannelConfig.setMessageSizeEstimator:(Lio/netty/channel/MessageSizeEstimator;)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 226
            aload 0 /* this */
            areturn
        end local 1 // io.netty.channel.MessageSizeEstimator estimator
        end local 0 // io.netty.channel.sctp.DefaultSctpServerChannelConfig this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/netty/channel/sctp/DefaultSctpServerChannelConfig;
            0    2     1  estimator  Lio/netty/channel/MessageSizeEstimator;
    MethodParameters:
           Name  Flags
      estimator  

  public io.netty.channel.ChannelConfig setAutoClose(boolean);
    descriptor: (Z)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setAutoClose:(Z)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setMaxMessagesPerRead(int);
    descriptor: (I)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setMaxMessagesPerRead:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setWriteBufferLowWaterMark(int);
    descriptor: (I)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setWriteBufferLowWaterMark:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setAutoRead(boolean);
    descriptor: (Z)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setAutoRead:(Z)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setConnectTimeoutMillis(int);
    descriptor: (I)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setConnectTimeoutMillis:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setWriteSpinCount(int);
    descriptor: (I)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setWriteSpinCount:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setWriteBufferWaterMark(io.netty.channel.WriteBufferWaterMark);
    descriptor: (Lio/netty/channel/WriteBufferWaterMark;)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setWriteBufferWaterMark:(Lio/netty/channel/WriteBufferWaterMark;)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setMessageSizeEstimator(io.netty.channel.MessageSizeEstimator);
    descriptor: (Lio/netty/channel/MessageSizeEstimator;)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setMessageSizeEstimator:(Lio/netty/channel/MessageSizeEstimator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setRecvByteBufAllocator(io.netty.channel.RecvByteBufAllocator);
    descriptor: (Lio/netty/channel/RecvByteBufAllocator;)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setRecvByteBufAllocator:(Lio/netty/channel/RecvByteBufAllocator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setAllocator(io.netty.buffer.ByteBufAllocator);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setAllocator:(Lio/netty/buffer/ByteBufAllocator;)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.ChannelConfig setWriteBufferHighWaterMark(int);
    descriptor: (I)Lio/netty/channel/ChannelConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.netty.channel.sctp.DefaultSctpServerChannelConfig.setWriteBufferHighWaterMark:(I)Lio/netty/channel/sctp/SctpServerChannelConfig;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DefaultSctpServerChannelConfig.java"
InnerClasses:
  public InitMaxStreams = com.sun.nio.sctp.SctpStandardSocketOptions$InitMaxStreams of com.sun.nio.sctp.SctpStandardSocketOptions