public class io.netty.channel.sctp.oio.OioSctpChannel extends io.netty.channel.oio.AbstractOioMessageChannel implements io.netty.channel.sctp.SctpChannel
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.channel.sctp.oio.OioSctpChannel
  super_class: io.netty.channel.oio.AbstractOioMessageChannel
{
  private static final io.netty.util.internal.logging.InternalLogger logger;
    descriptor: Lio/netty/util/internal/logging/InternalLogger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final io.netty.channel.ChannelMetadata METADATA;
    descriptor: Lio/netty/channel/ChannelMetadata;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String EXPECTED_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final com.sun.nio.sctp.SctpChannel ch;
    descriptor: Lcom/sun/nio/sctp/SctpChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.netty.channel.sctp.SctpChannelConfig config;
    descriptor: Lio/netty/channel/sctp/SctpChannelConfig;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.channels.Selector readSelector;
    descriptor: Ljava/nio/channels/Selector;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.channels.Selector writeSelector;
    descriptor: Ljava/nio/channels/Selector;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.channels.Selector connectSelector;
    descriptor: Ljava/nio/channels/Selector;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.sun.nio.sctp.NotificationHandler<?> notificationHandler;
    descriptor: Lcom/sun/nio/sctp/NotificationHandler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/sun/nio/sctp/NotificationHandler<*>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 66
            ldc Lio/netty/channel/sctp/oio/OioSctpChannel;
            invokestatic io.netty.util.internal.logging.InternalLoggerFactory.getInstance:(Ljava/lang/Class;)Lio/netty/util/internal/logging/InternalLogger;
         1: .line 65
            putstatic io.netty.channel.sctp.oio.OioSctpChannel.logger:Lio/netty/util/internal/logging/InternalLogger;
         2: .line 68
            new io.netty.channel.ChannelMetadata
            dup
            iconst_0
            invokespecial io.netty.channel.ChannelMetadata.<init>:(Z)V
            putstatic io.netty.channel.sctp.oio.OioSctpChannel.METADATA:Lio/netty/channel/ChannelMetadata;
         3: .line 69
            new java.lang.StringBuilder
            dup
            ldc " (expected: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc Lio/netty/channel/sctp/SctpMessage;
            invokestatic io.netty.util.internal.StringUtil.simpleClassName:(Ljava/lang/Class;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putstatic io.netty.channel.sctp.oio.OioSctpChannel.EXPECTED_TYPE:Ljava/lang/String;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static com.sun.nio.sctp.SctpChannel openChannel();
    descriptor: ()Lcom/sun/nio/sctp/SctpChannel;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=0
         0: .line 82
            invokestatic com.sun.nio.sctp.SctpChannel.open:()Lcom/sun/nio/sctp/SctpChannel;
         1: areturn
         2: .line 83
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 0 /* e */
        start local 0 // java.io.IOException e
         3: .line 84
            new io.netty.channel.ChannelException
            dup
            ldc "Failed to open a sctp channel."
            aload 0 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 0 // java.io.IOException e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            3    4     0     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 92
            aload 0 /* this */
            invokestatic io.netty.channel.sctp.oio.OioSctpChannel.openChannel:()Lcom/sun/nio/sctp/SctpChannel;
            invokespecial io.netty.channel.sctp.oio.OioSctpChannel.<init>:(Lcom/sun/nio/sctp/SctpChannel;)V
         1: .line 93
            return
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public void <init>(com.sun.nio.sctp.SctpChannel);
    descriptor: (Lcom/sun/nio/sctp/SctpChannel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // com.sun.nio.sctp.SctpChannel ch
         0: .line 101
            aload 0 /* this */
            aconst_null
            aload 1 /* ch */
            invokespecial io.netty.channel.sctp.oio.OioSctpChannel.<init>:(Lio/netty/channel/Channel;Lcom/sun/nio/sctp/SctpChannel;)V
         1: .line 102
            return
        end local 1 // com.sun.nio.sctp.SctpChannel ch
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    2     1    ch  Lcom/sun/nio/sctp/SctpChannel;
    MethodParameters:
      Name  Flags
      ch    

  public void <init>(io.netty.channel.Channel, com.sun.nio.sctp.SctpChannel);
    descriptor: (Lio/netty/channel/Channel;Lcom/sun/nio/sctp/SctpChannel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // io.netty.channel.Channel parent
        start local 2 // com.sun.nio.sctp.SctpChannel ch
         0: .line 112
            aload 0 /* this */
            aload 1 /* parent */
            invokespecial io.netty.channel.oio.AbstractOioMessageChannel.<init>:(Lio/netty/channel/Channel;)V
         1: .line 113
            aload 0 /* this */
            aload 2 /* ch */
            putfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
         2: .line 114
            iconst_0
            istore 3 /* success */
        start local 3 // boolean success
         3: .line 116
            aload 2 /* ch */
            iconst_0
            invokevirtual com.sun.nio.sctp.SctpChannel.configureBlocking:(Z)Ljava/nio/channels/SelectableChannel;
            pop
         4: .line 117
            aload 0 /* this */
            invokestatic java.nio.channels.Selector.open:()Ljava/nio/channels/Selector;
            putfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
         5: .line 118
            aload 0 /* this */
            invokestatic java.nio.channels.Selector.open:()Ljava/nio/channels/Selector;
            putfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
         6: .line 119
            aload 0 /* this */
            invokestatic java.nio.channels.Selector.open:()Ljava/nio/channels/Selector;
            putfield io.netty.channel.sctp.oio.OioSctpChannel.connectSelector:Ljava/nio/channels/Selector;
         7: .line 121
            aload 2 /* ch */
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
            iconst_1
            invokevirtual com.sun.nio.sctp.SctpChannel.register:(Ljava/nio/channels/Selector;I)Ljava/nio/channels/SelectionKey;
            pop
         8: .line 122
            aload 2 /* ch */
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
            iconst_4
            invokevirtual com.sun.nio.sctp.SctpChannel.register:(Ljava/nio/channels/Selector;I)Ljava/nio/channels/SelectionKey;
            pop
         9: .line 123
            aload 2 /* ch */
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.connectSelector:Ljava/nio/channels/Selector;
            bipush 8
            invokevirtual com.sun.nio.sctp.SctpChannel.register:(Ljava/nio/channels/Selector;I)Ljava/nio/channels/SelectionKey;
            pop
        10: .line 125
            aload 0 /* this */
            new io.netty.channel.sctp.oio.OioSctpChannel$OioSctpChannelConfig
            dup
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* ch */
            invokespecial io.netty.channel.sctp.oio.OioSctpChannel$OioSctpChannelConfig.<init>:(Lio/netty/channel/sctp/oio/OioSctpChannel;Lio/netty/channel/sctp/oio/OioSctpChannel;Lcom/sun/nio/sctp/SctpChannel;)V
            putfield io.netty.channel.sctp.oio.OioSctpChannel.config:Lio/netty/channel/sctp/SctpChannelConfig;
        11: .line 126
            aload 0 /* this */
            new io.netty.channel.sctp.SctpNotificationHandler
            dup
            aload 0 /* this */
            invokespecial io.netty.channel.sctp.SctpNotificationHandler.<init>:(Lio/netty/channel/sctp/SctpChannel;)V
            putfield io.netty.channel.sctp.oio.OioSctpChannel.notificationHandler:Lcom/sun/nio/sctp/NotificationHandler;
        12: .line 127
            iconst_1
            istore 3 /* success */
        13: .line 128
            goto 23
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel io.netty.channel.Channel com.sun.nio.sctp.SctpChannel int
      StackMap stack: java.lang.Exception
        14: astore 4 /* e */
        start local 4 // java.lang.Exception e
        15: .line 129
            new io.netty.channel.ChannelException
            dup
            ldc "failed to initialize a sctp channel"
            aload 4 /* e */
            invokespecial io.netty.channel.ChannelException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.Exception e
        16: .line 130
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
        17: .line 131
            iload 3 /* success */
            ifne 22
        18: .line 133
            aload 2 /* ch */
            invokevirtual com.sun.nio.sctp.SctpChannel.close:()V
        19: .line 134
            goto 22
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel io.netty.channel.Channel com.sun.nio.sctp.SctpChannel int top java.lang.Throwable
      StackMap stack: java.io.IOException
        20: astore 6 /* e */
        start local 6 // java.io.IOException e
        21: .line 135
            getstatic io.netty.channel.sctp.oio.OioSctpChannel.logger:Lio/netty/util/internal/logging/InternalLogger;
            ldc "Failed to close a sctp channel."
            aload 6 /* e */
            invokeinterface io.netty.util.internal.logging.InternalLogger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 6 // java.io.IOException e
        22: .line 138
      StackMap locals:
      StackMap stack:
            aload 5
            athrow
        23: .line 131
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel io.netty.channel.Channel com.sun.nio.sctp.SctpChannel int
      StackMap stack:
            iload 3 /* success */
            ifne 28
        24: .line 133
            aload 2 /* ch */
            invokevirtual com.sun.nio.sctp.SctpChannel.close:()V
        25: .line 134
            goto 28
      StackMap locals:
      StackMap stack: java.io.IOException
        26: astore 6 /* e */
        start local 6 // java.io.IOException e
        27: .line 135
            getstatic io.netty.channel.sctp.oio.OioSctpChannel.logger:Lio/netty/util/internal/logging/InternalLogger;
            ldc "Failed to close a sctp channel."
            aload 6 /* e */
            invokeinterface io.netty.util.internal.logging.InternalLogger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 6 // java.io.IOException e
        28: .line 139
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean success
        end local 2 // com.sun.nio.sctp.SctpChannel ch
        end local 1 // io.netty.channel.Channel parent
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   29     0     this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0   29     1   parent  Lio/netty/channel/Channel;
            0   29     2       ch  Lcom/sun/nio/sctp/SctpChannel;
            3   29     3  success  Z
           15   16     4        e  Ljava/lang/Exception;
           21   22     6        e  Ljava/io/IOException;
           27   28     6        e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3    13      14  Class java.lang.Exception
           3    16      16  any
          18    19      20  Class java.io.IOException
          24    25      26  Class java.io.IOException
    MethodParameters:
        Name  Flags
      parent  
      ch      

  public java.net.InetSocketAddress localAddress();
    descriptor: ()Ljava/net/InetSocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 143
            aload 0 /* this */
            invokespecial io.netty.channel.oio.AbstractOioMessageChannel.localAddress:()Ljava/net/SocketAddress;
            checkcast java.net.InetSocketAddress
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public java.net.InetSocketAddress remoteAddress();
    descriptor: ()Ljava/net/InetSocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 148
            aload 0 /* this */
            invokespecial io.netty.channel.oio.AbstractOioMessageChannel.remoteAddress:()Ljava/net/SocketAddress;
            checkcast java.net.InetSocketAddress
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public io.netty.channel.sctp.SctpServerChannel parent();
    descriptor: ()Lio/netty/channel/sctp/SctpServerChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 153
            aload 0 /* this */
            invokespecial io.netty.channel.oio.AbstractOioMessageChannel.parent:()Lio/netty/channel/Channel;
            checkcast io.netty.channel.sctp.SctpServerChannel
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public io.netty.channel.ChannelMetadata metadata();
    descriptor: ()Lio/netty/channel/ChannelMetadata;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 158
            getstatic io.netty.channel.sctp.oio.OioSctpChannel.METADATA:Lio/netty/channel/ChannelMetadata;
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public io.netty.channel.sctp.SctpChannelConfig config();
    descriptor: ()Lio/netty/channel/sctp/SctpChannelConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 163
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.config:Lio/netty/channel/sctp/SctpChannelConfig;
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  public boolean isOpen();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 168
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.isOpen:()Z
            ireturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  protected int doReadMessages(java.util.List<java.lang.Object>);
    descriptor: (Ljava/util/List;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=12, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.util.List msgs
         0: .line 173
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.isOpen:()Z
            ifne 2
         1: .line 174
            iconst_0
            ireturn
         2: .line 177
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* readMessages */
        start local 2 // int readMessages
         3: .line 179
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
            ldc 1000
            invokevirtual java.nio.channels.Selector.select:(J)I
            istore 3 /* selectedKeys */
        start local 3 // int selectedKeys
         4: .line 180
            iload 3 /* selectedKeys */
            ifle 5
            iconst_1
            goto 6
      StackMap locals: int int
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* keysSelected */
        start local 4 // boolean keysSelected
         7: .line 182
            iload 4 /* keysSelected */
            ifne 9
         8: .line 183
            iload 2 /* readMessages */
            ireturn
         9: .line 190
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.selectedKeys:()Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
        10: .line 191
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.unsafe:()Lio/netty/channel/Channel$Unsafe;
            invokeinterface io.netty.channel.Channel$Unsafe.recvBufAllocHandle:()Lio/netty/channel/RecvByteBufAllocator$Handle;
            astore 5 /* allocHandle */
        start local 5 // io.netty.channel.RecvByteBufAllocator$Handle allocHandle
        11: .line 192
            aload 5 /* allocHandle */
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.config:()Lio/netty/channel/sctp/SctpChannelConfig;
            invokeinterface io.netty.channel.sctp.SctpChannelConfig.getAllocator:()Lio/netty/buffer/ByteBufAllocator;
            invokeinterface io.netty.channel.RecvByteBufAllocator$Handle.allocate:(Lio/netty/buffer/ByteBufAllocator;)Lio/netty/buffer/ByteBuf;
            astore 6 /* buffer */
        start local 6 // io.netty.buffer.ByteBuf buffer
        12: .line 193
            iconst_1
            istore 7 /* free */
        start local 7 // boolean free
        13: .line 196
            aload 6 /* buffer */
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.writableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            astore 8 /* data */
        start local 8 // java.nio.ByteBuffer data
        14: .line 197
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 8 /* data */
            aconst_null
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.notificationHandler:Lcom/sun/nio/sctp/NotificationHandler;
            invokevirtual com.sun.nio.sctp.SctpChannel.receive:(Ljava/nio/ByteBuffer;Ljava/lang/Object;Lcom/sun/nio/sctp/NotificationHandler;)Lcom/sun/nio/sctp/MessageInfo;
            astore 9 /* messageInfo */
        start local 9 // com.sun.nio.sctp.MessageInfo messageInfo
        15: .line 198
            aload 9 /* messageInfo */
            ifnonnull 20
        16: .line 199
            iload 2 /* readMessages */
            istore 11
        17: .line 211
            iload 7 /* free */
            ifeq 19
        18: .line 212
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        19: .line 199
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.List int int int io.netty.channel.RecvByteBufAllocator$Handle io.netty.buffer.ByteBuf int java.nio.ByteBuffer com.sun.nio.sctp.MessageInfo top int
      StackMap stack:
            iload 11
            ireturn
        20: .line 202
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.List int int int io.netty.channel.RecvByteBufAllocator$Handle io.netty.buffer.ByteBuf int java.nio.ByteBuffer com.sun.nio.sctp.MessageInfo
      StackMap stack:
            aload 8 /* data */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/Buffer;
            pop
        21: .line 203
            aload 5 /* allocHandle */
            aload 8 /* data */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokeinterface io.netty.channel.RecvByteBufAllocator$Handle.lastBytesRead:(I)V
        22: .line 204
            aload 1 /* msgs */
            new io.netty.channel.sctp.SctpMessage
            dup
            aload 9 /* messageInfo */
        23: .line 205
            aload 6 /* buffer */
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            aload 5 /* allocHandle */
            invokeinterface io.netty.channel.RecvByteBufAllocator$Handle.lastBytesRead:()I
            iadd
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:(I)Lio/netty/buffer/ByteBuf;
            invokespecial io.netty.channel.sctp.SctpMessage.<init>:(Lcom/sun/nio/sctp/MessageInfo;Lio/netty/buffer/ByteBuf;)V
        24: .line 204
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        25: .line 206
            iconst_0
            istore 7 /* free */
        26: .line 207
            iinc 2 /* readMessages */ 1
        end local 9 // com.sun.nio.sctp.MessageInfo messageInfo
        end local 8 // java.nio.ByteBuffer data
        27: .line 208
            goto 36
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.List int int int io.netty.channel.RecvByteBufAllocator$Handle io.netty.buffer.ByteBuf int
      StackMap stack: java.lang.Throwable
        28: astore 8 /* cause */
        start local 8 // java.lang.Throwable cause
        29: .line 209
            aload 8 /* cause */
            invokestatic io.netty.util.internal.PlatformDependent.throwException:(Ljava/lang/Throwable;)V
        end local 8 // java.lang.Throwable cause
        30: .line 211
            iload 7 /* free */
            ifeq 38
        31: .line 212
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
            goto 38
        32: .line 210
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 10
        33: .line 211
            iload 7 /* free */
            ifeq 35
        34: .line 212
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        35: .line 214
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.List int int int io.netty.channel.RecvByteBufAllocator$Handle io.netty.buffer.ByteBuf int top top java.lang.Throwable
      StackMap stack:
            aload 10
            athrow
        36: .line 211
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.List int int int io.netty.channel.RecvByteBufAllocator$Handle io.netty.buffer.ByteBuf int
      StackMap stack:
            iload 7 /* free */
            ifeq 38
        37: .line 212
            aload 6 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        38: .line 215
      StackMap locals:
      StackMap stack:
            iload 2 /* readMessages */
            ireturn
        end local 7 // boolean free
        end local 6 // io.netty.buffer.ByteBuf buffer
        end local 5 // io.netty.channel.RecvByteBufAllocator$Handle allocHandle
        end local 4 // boolean keysSelected
        end local 3 // int selectedKeys
        end local 2 // int readMessages
        end local 1 // java.util.List msgs
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   39     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0   39     1          msgs  Ljava/util/List<Ljava/lang/Object;>;
            3   39     2  readMessages  I
            4   39     3  selectedKeys  I
            7   39     4  keysSelected  Z
           11   39     5   allocHandle  Lio/netty/channel/RecvByteBufAllocator$Handle;
           12   39     6        buffer  Lio/netty/buffer/ByteBuf;
           13   39     7          free  Z
           14   27     8          data  Ljava/nio/ByteBuffer;
           15   27     9   messageInfo  Lcom/sun/nio/sctp/MessageInfo;
           29   30     8         cause  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          13    17      28  Class java.lang.Throwable
          20    27      28  Class java.lang.Throwable
          13    17      32  any
          20    30      32  any
    Exceptions:
      throws java.lang.Exception
    Signature: (Ljava/util/List<Ljava/lang/Object;>;)I
    MethodParameters:
      Name  Flags
      msgs  

  protected void doWrite(io.netty.channel.ChannelOutboundBuffer);
    descriptor: (Lio/netty/channel/ChannelOutboundBuffer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=12, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // io.netty.channel.ChannelOutboundBuffer in
         0: .line 220
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.isOpen:()Z
            ifne 2
         1: .line 221
            return
         2: .line 223
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            invokevirtual io.netty.channel.ChannelOutboundBuffer.size:()I
            istore 2 /* size */
        start local 2 // int size
         3: .line 224
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
            ldc 1000
            invokevirtual java.nio.channels.Selector.select:(J)I
            istore 3 /* selectedKeys */
        start local 3 // int selectedKeys
         4: .line 225
            iload 3 /* selectedKeys */
            ifle 34
         5: .line 226
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.selectedKeys:()Ljava/util/Set;
            astore 4 /* writableKeys */
        start local 4 // java.util.Set writableKeys
         6: .line 227
            aload 4 /* writableKeys */
            invokeinterface java.util.Set.isEmpty:()Z
            ifeq 8
         7: .line 228
            return
         8: .line 230
      StackMap locals: int int java.util.Set
      StackMap stack:
            aload 4 /* writableKeys */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5 /* writableKeysIt */
        start local 5 // java.util.Iterator writableKeysIt
         9: .line 231
            iconst_0
            istore 6 /* written */
        start local 6 // int written
        10: .line 233
      StackMap locals: java.util.Iterator int
      StackMap stack:
            iload 6 /* written */
            iload 2 /* size */
            if_icmpne 12
        11: .line 235
            return
        12: .line 237
      StackMap locals:
      StackMap stack:
            aload 5 /* writableKeysIt */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            pop
        13: .line 238
            aload 5 /* writableKeysIt */
            invokeinterface java.util.Iterator.remove:()V
        14: .line 240
            aload 1 /* in */
            invokevirtual io.netty.channel.ChannelOutboundBuffer.current:()Ljava/lang/Object;
            checkcast io.netty.channel.sctp.SctpMessage
            astore 7 /* packet */
        start local 7 // io.netty.channel.sctp.SctpMessage packet
        15: .line 241
            aload 7 /* packet */
            ifnonnull 17
        16: .line 242
            return
        17: .line 245
      StackMap locals: io.netty.channel.sctp.SctpMessage
      StackMap stack:
            aload 7 /* packet */
            invokevirtual io.netty.channel.sctp.SctpMessage.content:()Lio/netty/buffer/ByteBuf;
            astore 8 /* data */
        start local 8 // io.netty.buffer.ByteBuf data
        18: .line 246
            aload 8 /* data */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            istore 9 /* dataLen */
        start local 9 // int dataLen
        19: .line 249
            aload 8 /* data */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            iconst_m1
            if_icmpeq 22
        20: .line 250
            aload 8 /* data */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:()Ljava/nio/ByteBuffer;
            astore 10 /* nioData */
        start local 10 // java.nio.ByteBuffer nioData
        21: .line 251
            goto 25
        end local 10 // java.nio.ByteBuffer nioData
        22: .line 252
      StackMap locals: io.netty.buffer.ByteBuf int
      StackMap stack:
            iload 9 /* dataLen */
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 10 /* nioData */
        start local 10 // java.nio.ByteBuffer nioData
        23: .line 253
            aload 8 /* data */
            aload 8 /* data */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 10 /* nioData */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
        24: .line 254
            aload 10 /* nioData */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/Buffer;
            pop
        25: .line 257
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.association:()Lcom/sun/nio/sctp/Association;
            aconst_null
            aload 7 /* packet */
            invokevirtual io.netty.channel.sctp.SctpMessage.streamIdentifier:()I
            invokestatic com.sun.nio.sctp.MessageInfo.createOutgoing:(Lcom/sun/nio/sctp/Association;Ljava/net/SocketAddress;I)Lcom/sun/nio/sctp/MessageInfo;
            astore 11 /* mi */
        start local 11 // com.sun.nio.sctp.MessageInfo mi
        26: .line 258
            aload 11 /* mi */
            aload 7 /* packet */
            invokevirtual io.netty.channel.sctp.SctpMessage.protocolIdentifier:()I
            invokevirtual com.sun.nio.sctp.MessageInfo.payloadProtocolID:(I)Lcom/sun/nio/sctp/MessageInfo;
            pop
        27: .line 259
            aload 11 /* mi */
            aload 7 /* packet */
            invokevirtual io.netty.channel.sctp.SctpMessage.streamIdentifier:()I
            invokevirtual com.sun.nio.sctp.MessageInfo.streamNumber:(I)Lcom/sun/nio/sctp/MessageInfo;
            pop
        28: .line 260
            aload 11 /* mi */
            aload 7 /* packet */
            invokevirtual io.netty.channel.sctp.SctpMessage.isUnordered:()Z
            invokevirtual com.sun.nio.sctp.MessageInfo.unordered:(Z)Lcom/sun/nio/sctp/MessageInfo;
            pop
        29: .line 262
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 10 /* nioData */
            aload 11 /* mi */
            invokevirtual com.sun.nio.sctp.SctpChannel.send:(Ljava/nio/ByteBuffer;Lcom/sun/nio/sctp/MessageInfo;)I
            pop
        30: .line 263
            iinc 6 /* written */ 1
        31: .line 264
            aload 1 /* in */
            invokevirtual io.netty.channel.ChannelOutboundBuffer.remove:()Z
            pop
        32: .line 266
            aload 5 /* writableKeysIt */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        33: .line 267
            return
        end local 11 // com.sun.nio.sctp.MessageInfo mi
        end local 10 // java.nio.ByteBuffer nioData
        end local 9 // int dataLen
        end local 8 // io.netty.buffer.ByteBuf data
        end local 7 // io.netty.channel.sctp.SctpMessage packet
        end local 6 // int written
        end local 5 // java.util.Iterator writableKeysIt
        end local 4 // java.util.Set writableKeys
        34: .line 271
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel io.netty.channel.ChannelOutboundBuffer int int
      StackMap stack:
            return
        end local 3 // int selectedKeys
        end local 2 // int size
        end local 1 // io.netty.channel.ChannelOutboundBuffer in
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   35     0            this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0   35     1              in  Lio/netty/channel/ChannelOutboundBuffer;
            3   35     2            size  I
            4   35     3    selectedKeys  I
            6   34     4    writableKeys  Ljava/util/Set<Ljava/nio/channels/SelectionKey;>;
            9   34     5  writableKeysIt  Ljava/util/Iterator<Ljava/nio/channels/SelectionKey;>;
           10   34     6         written  I
           15   34     7          packet  Lio/netty/channel/sctp/SctpMessage;
           18   34     8            data  Lio/netty/buffer/ByteBuf;
           19   34     9         dataLen  I
           21   22    10         nioData  Ljava/nio/ByteBuffer;
           23   34    10         nioData  Ljava/nio/ByteBuffer;
           26   34    11              mi  Lcom/sun/nio/sctp/MessageInfo;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      in    

  protected java.lang.Object filterOutboundMessage(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.lang.Object msg
         0: .line 275
            aload 1 /* msg */
            instanceof io.netty.channel.sctp.SctpMessage
            ifeq 2
         1: .line 276
            aload 1 /* msg */
            areturn
         2: .line 279
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
         3: .line 280
            new java.lang.StringBuilder
            dup
            ldc "unsupported message type: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* msg */
            invokestatic io.netty.util.internal.StringUtil.simpleClassName:(Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic io.netty.channel.sctp.oio.OioSctpChannel.EXPECTED_TYPE:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 279
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object msg
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    5     1   msg  Ljava/lang/Object;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      msg   

  public com.sun.nio.sctp.Association association();
    descriptor: ()Lcom/sun/nio/sctp/Association;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 286
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.association:()Lcom/sun/nio/sctp/Association;
         1: areturn
         2: .line 287
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         3: .line 288
            aconst_null
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public boolean isActive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 294
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.isOpen:()Z
            ifeq 1
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.association:()Lcom/sun/nio/sctp/Association;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;

  protected java.net.SocketAddress localAddress0();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 300
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.getAllLocalAddresses:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 1 /* i */
        start local 1 // java.util.Iterator i
         1: .line 301
            aload 1 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 5
         2: .line 302
            aload 1 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.net.SocketAddress
         3: areturn
        end local 1 // java.util.Iterator i
         4: .line 304
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         5: .line 307
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            1    4     1     i  Ljava/util/Iterator<Ljava/net/SocketAddress;>;
      Exception table:
        from    to  target  type
           0     3       4  Class java.io.IOException

  public java.util.Set<java.net.InetSocketAddress> allLocalAddresses();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 313
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.getAllLocalAddresses:()Ljava/util/Set;
            astore 1 /* allLocalAddresses */
        start local 1 // java.util.Set allLocalAddresses
         1: .line 314
            new java.util.LinkedHashSet
            dup
            aload 1 /* allLocalAddresses */
            invokeinterface java.util.Set.size:()I
            invokespecial java.util.LinkedHashSet.<init>:(I)V
            astore 2 /* addresses */
        start local 2 // java.util.Set addresses
         2: .line 315
            aload 1 /* allLocalAddresses */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.Set java.util.Set top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.net.SocketAddress
            astore 3 /* socketAddress */
        start local 3 // java.net.SocketAddress socketAddress
         4: .line 316
            aload 2 /* addresses */
            aload 3 /* socketAddress */
            checkcast java.net.InetSocketAddress
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.net.SocketAddress socketAddress
         5: .line 315
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 318
            aload 2 /* addresses */
         7: areturn
        end local 2 // java.util.Set addresses
        end local 1 // java.util.Set allLocalAddresses
         8: .line 319
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel
      StackMap stack: java.lang.Throwable
            pop
         9: .line 320
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            1    8     1  allLocalAddresses  Ljava/util/Set<Ljava/net/SocketAddress;>;
            2    8     2          addresses  Ljava/util/Set<Ljava/net/InetSocketAddress;>;
            4    5     3      socketAddress  Ljava/net/SocketAddress;
      Exception table:
        from    to  target  type
           0     7       8  Class java.lang.Throwable
    Signature: ()Ljava/util/Set<Ljava/net/InetSocketAddress;>;

  protected java.net.SocketAddress remoteAddress0();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 327
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.getRemoteAddresses:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 1 /* i */
        start local 1 // java.util.Iterator i
         1: .line 328
            aload 1 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 5
         2: .line 329
            aload 1 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.net.SocketAddress
         3: areturn
        end local 1 // java.util.Iterator i
         4: .line 331
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         5: .line 334
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            1    4     1     i  Ljava/util/Iterator<Ljava/net/SocketAddress;>;
      Exception table:
        from    to  target  type
           0     3       4  Class java.io.IOException

  public java.util.Set<java.net.InetSocketAddress> allRemoteAddresses();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 340
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.getRemoteAddresses:()Ljava/util/Set;
            astore 1 /* allLocalAddresses */
        start local 1 // java.util.Set allLocalAddresses
         1: .line 341
            new java.util.LinkedHashSet
            dup
            aload 1 /* allLocalAddresses */
            invokeinterface java.util.Set.size:()I
            invokespecial java.util.LinkedHashSet.<init>:(I)V
            astore 2 /* addresses */
        start local 2 // java.util.Set addresses
         2: .line 342
            aload 1 /* allLocalAddresses */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.util.Set java.util.Set top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.net.SocketAddress
            astore 3 /* socketAddress */
        start local 3 // java.net.SocketAddress socketAddress
         4: .line 343
            aload 2 /* addresses */
            aload 3 /* socketAddress */
            checkcast java.net.InetSocketAddress
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.net.SocketAddress socketAddress
         5: .line 342
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 345
            aload 2 /* addresses */
         7: areturn
        end local 2 // java.util.Set addresses
        end local 1 // java.util.Set allLocalAddresses
         8: .line 346
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel
      StackMap stack: java.lang.Throwable
            pop
         9: .line 347
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            areturn
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            1    8     1  allLocalAddresses  Ljava/util/Set<Ljava/net/SocketAddress;>;
            2    8     2          addresses  Ljava/util/Set<Ljava/net/InetSocketAddress;>;
            4    5     3      socketAddress  Ljava/net/SocketAddress;
      Exception table:
        from    to  target  type
           0     7       8  Class java.lang.Throwable
    Signature: ()Ljava/util/Set<Ljava/net/InetSocketAddress;>;

  protected void doBind(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.SocketAddress localAddress
         0: .line 353
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 1 /* localAddress */
            invokevirtual com.sun.nio.sctp.SctpChannel.bind:(Ljava/net/SocketAddress;)Lcom/sun/nio/sctp/SctpChannel;
            pop
         1: .line 354
            return
        end local 1 // java.net.SocketAddress localAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    2     1  localAddress  Ljava/net/SocketAddress;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
              Name  Flags
      localAddress  

  protected void doConnect(java.net.SocketAddress, java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;Ljava/net/SocketAddress;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.SocketAddress remoteAddress
        start local 2 // java.net.SocketAddress localAddress
         0: .line 359
            aload 2 /* localAddress */
            ifnull 2
         1: .line 360
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 2 /* localAddress */
            invokevirtual com.sun.nio.sctp.SctpChannel.bind:(Ljava/net/SocketAddress;)Lcom/sun/nio/sctp/SctpChannel;
            pop
         2: .line 363
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* success */
        start local 3 // boolean success
         3: .line 365
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 1 /* remoteAddress */
            invokevirtual com.sun.nio.sctp.SctpChannel.connect:(Ljava/net/SocketAddress;)Z
            pop
         4: .line 366
            iconst_0
            istore 4 /* finishConnect */
        start local 4 // boolean finishConnect
         5: .line 367
            goto 16
         6: .line 368
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.connectSelector:Ljava/nio/channels/Selector;
            ldc 1000
            invokevirtual java.nio.channels.Selector.select:(J)I
            iflt 16
         7: .line 369
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.connectSelector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.selectedKeys:()Ljava/util/Set;
            astore 5 /* selectionKeys */
        start local 5 // java.util.Set selectionKeys
         8: .line 370
            aload 5 /* selectionKeys */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 7
            goto 14
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.net.SocketAddress java.net.SocketAddress int int java.util.Set top java.util.Iterator
      StackMap stack:
         9: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 6 /* key */
        start local 6 // java.nio.channels.SelectionKey key
        10: .line 371
            aload 6 /* key */
            invokevirtual java.nio.channels.SelectionKey.isConnectable:()Z
            ifeq 14
        11: .line 372
            aload 5 /* selectionKeys */
            invokeinterface java.util.Set.clear:()V
        12: .line 373
            iconst_1
            istore 4 /* finishConnect */
        13: .line 374
            goto 15
        end local 6 // java.nio.channels.SelectionKey key
        14: .line 370
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        15: .line 377
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.net.SocketAddress java.net.SocketAddress int int java.util.Set
      StackMap stack:
            aload 5 /* selectionKeys */
            invokeinterface java.util.Set.clear:()V
        end local 5 // java.util.Set selectionKeys
        16: .line 367
      StackMap locals:
      StackMap stack:
            iload 4 /* finishConnect */
            ifeq 6
        17: .line 380
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.finishConnect:()Z
            istore 3 /* success */
        end local 4 // boolean finishConnect
        18: .line 381
            goto 23
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.net.SocketAddress java.net.SocketAddress int
      StackMap stack: java.lang.Throwable
        19: astore 8
        20: .line 382
            iload 3 /* success */
            ifne 22
        21: .line 383
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.doClose:()V
        22: .line 385
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.net.SocketAddress java.net.SocketAddress int top top top top java.lang.Throwable
      StackMap stack:
            aload 8
            athrow
        23: .line 382
      StackMap locals: io.netty.channel.sctp.oio.OioSctpChannel java.net.SocketAddress java.net.SocketAddress int
      StackMap stack:
            iload 3 /* success */
            ifne 25
        24: .line 383
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.doClose:()V
        25: .line 386
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean success
        end local 2 // java.net.SocketAddress localAddress
        end local 1 // java.net.SocketAddress remoteAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   26     0           this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0   26     1  remoteAddress  Ljava/net/SocketAddress;
            0   26     2   localAddress  Ljava/net/SocketAddress;
            3   26     3        success  Z
            5   18     4  finishConnect  Z
            8   16     5  selectionKeys  Ljava/util/Set<Ljava/nio/channels/SelectionKey;>;
           10   14     6            key  Ljava/nio/channels/SelectionKey;
      Exception table:
        from    to  target  type
           3    19      19  any
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
               Name  Flags
      remoteAddress  
      localAddress   

  protected void doDisconnect();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 390
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.doClose:()V
         1: .line 391
            return
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
    Exceptions:
      throws java.lang.Exception

  protected void doClose();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
         0: .line 395
            ldc "read"
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.readSelector:Ljava/nio/channels/Selector;
            invokestatic io.netty.channel.sctp.oio.OioSctpChannel.closeSelector:(Ljava/lang/String;Ljava/nio/channels/Selector;)V
         1: .line 396
            ldc "write"
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.writeSelector:Ljava/nio/channels/Selector;
            invokestatic io.netty.channel.sctp.oio.OioSctpChannel.closeSelector:(Ljava/lang/String;Ljava/nio/channels/Selector;)V
         2: .line 397
            ldc "connect"
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.connectSelector:Ljava/nio/channels/Selector;
            invokestatic io.netty.channel.sctp.oio.OioSctpChannel.closeSelector:(Ljava/lang/String;Ljava/nio/channels/Selector;)V
         3: .line 398
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            invokevirtual com.sun.nio.sctp.SctpChannel.close:()V
         4: .line 399
            return
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/netty/channel/sctp/oio/OioSctpChannel;
    Exceptions:
      throws java.lang.Exception

  private static void closeSelector(java.lang.String, java.nio.channels.Selector);
    descriptor: (Ljava/lang/String;Ljava/nio/channels/Selector;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.lang.String selectorName
        start local 1 // java.nio.channels.Selector selector
         0: .line 403
            aload 1 /* selector */
            invokevirtual java.nio.channels.Selector.close:()V
         1: .line 404
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 405
            getstatic io.netty.channel.sctp.oio.OioSctpChannel.logger:Lio/netty/util/internal/logging/InternalLogger;
            new java.lang.StringBuilder
            dup
            ldc "Failed to close a "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* selectorName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " selector."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* e */
            invokeinterface io.netty.util.internal.logging.InternalLogger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 2 // java.io.IOException e
         4: .line 407
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.channels.Selector selector
        end local 0 // java.lang.String selectorName
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0  selectorName  Ljava/lang/String;
            0    5     1      selector  Ljava/nio/channels/Selector;
            3    4     2             e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
              Name  Flags
      selectorName  
      selector      

  public io.netty.channel.ChannelFuture bindAddress(java.net.InetAddress);
    descriptor: (Ljava/net/InetAddress;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.InetAddress localAddress
         0: .line 411
            aload 0 /* this */
            aload 1 /* localAddress */
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.newPromise:()Lio/netty/channel/ChannelPromise;
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.bindAddress:(Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 1 // java.net.InetAddress localAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    1     1  localAddress  Ljava/net/InetAddress;
    MethodParameters:
              Name  Flags
      localAddress  

  public io.netty.channel.ChannelFuture bindAddress(java.net.InetAddress, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.InetAddress localAddress
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 416
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.eventLoop:()Lio/netty/channel/EventLoop;
            invokeinterface io.netty.channel.EventLoop.inEventLoop:()Z
            ifeq 7
         1: .line 418
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 1 /* localAddress */
            invokevirtual com.sun.nio.sctp.SctpChannel.bindAddress:(Ljava/net/InetAddress;)Lcom/sun/nio/sctp/SctpChannel;
            pop
         2: .line 419
            aload 2 /* promise */
            invokeinterface io.netty.channel.ChannelPromise.setSuccess:()Lio/netty/channel/ChannelPromise;
            pop
         3: .line 420
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         5: .line 421
            aload 2 /* promise */
            aload 3 /* t */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        end local 3 // java.lang.Throwable t
         6: .line 423
            goto 8
         7: .line 424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.eventLoop:()Lio/netty/channel/EventLoop;
            new io.netty.channel.sctp.oio.OioSctpChannel$1
            dup
            aload 0 /* this */
            aload 1 /* localAddress */
            aload 2 /* promise */
            invokespecial io.netty.channel.sctp.oio.OioSctpChannel$1.<init>:(Lio/netty/channel/sctp/oio/OioSctpChannel;Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)V
            invokeinterface io.netty.channel.EventLoop.execute:(Ljava/lang/Runnable;)V
         8: .line 431
      StackMap locals:
      StackMap stack:
            aload 2 /* promise */
            areturn
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // java.net.InetAddress localAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    9     1  localAddress  Ljava/net/InetAddress;
            0    9     2       promise  Lio/netty/channel/ChannelPromise;
            5    6     3             t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.Throwable
    MethodParameters:
              Name  Flags
      localAddress  final
      promise       final

  public io.netty.channel.ChannelFuture unbindAddress(java.net.InetAddress);
    descriptor: (Ljava/net/InetAddress;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.InetAddress localAddress
         0: .line 436
            aload 0 /* this */
            aload 1 /* localAddress */
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.newPromise:()Lio/netty/channel/ChannelPromise;
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.unbindAddress:(Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            areturn
        end local 1 // java.net.InetAddress localAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    1     1  localAddress  Ljava/net/InetAddress;
    MethodParameters:
              Name  Flags
      localAddress  

  public io.netty.channel.ChannelFuture unbindAddress(java.net.InetAddress, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
        start local 1 // java.net.InetAddress localAddress
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 441
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.eventLoop:()Lio/netty/channel/EventLoop;
            invokeinterface io.netty.channel.EventLoop.inEventLoop:()Z
            ifeq 7
         1: .line 443
            aload 0 /* this */
            getfield io.netty.channel.sctp.oio.OioSctpChannel.ch:Lcom/sun/nio/sctp/SctpChannel;
            aload 1 /* localAddress */
            invokevirtual com.sun.nio.sctp.SctpChannel.unbindAddress:(Ljava/net/InetAddress;)Lcom/sun/nio/sctp/SctpChannel;
            pop
         2: .line 444
            aload 2 /* promise */
            invokeinterface io.netty.channel.ChannelPromise.setSuccess:()Lio/netty/channel/ChannelPromise;
            pop
         3: .line 445
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         5: .line 446
            aload 2 /* promise */
            aload 3 /* t */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        end local 3 // java.lang.Throwable t
         6: .line 448
            goto 8
         7: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.eventLoop:()Lio/netty/channel/EventLoop;
            new io.netty.channel.sctp.oio.OioSctpChannel$2
            dup
            aload 0 /* this */
            aload 1 /* localAddress */
            aload 2 /* promise */
            invokespecial io.netty.channel.sctp.oio.OioSctpChannel$2.<init>:(Lio/netty/channel/sctp/oio/OioSctpChannel;Ljava/net/InetAddress;Lio/netty/channel/ChannelPromise;)V
            invokeinterface io.netty.channel.EventLoop.execute:(Ljava/lang/Runnable;)V
         8: .line 456
      StackMap locals:
      StackMap stack:
            aload 2 /* promise */
            areturn
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // java.net.InetAddress localAddress
        end local 0 // io.netty.channel.sctp.oio.OioSctpChannel this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lio/netty/channel/sctp/oio/OioSctpChannel;
            0    9     1  localAddress  Ljava/net/InetAddress;
            0    9     2       promise  Lio/netty/channel/ChannelPromise;
            5    6     3             t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.Throwable
    MethodParameters:
              Name  Flags
      localAddress  final
      promise       final

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

  public java.net.SocketAddress localAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.localAddress:()Ljava/net/InetSocketAddress;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.channel.Channel parent();
    descriptor: ()Lio/netty/channel/Channel;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.parent:()Lio/netty/channel/sctp/SctpServerChannel;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.net.SocketAddress remoteAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.remoteAddress:()Ljava/net/InetSocketAddress;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static void access$4(io.netty.channel.sctp.oio.OioSctpChannel);
    descriptor: (Lio/netty/channel/sctp/oio/OioSctpChannel;)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.channel.sctp.oio.OioSctpChannel.clearReadPending:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "OioSctpChannel.java"
NestMembers:
  io.netty.channel.sctp.oio.OioSctpChannel$1  io.netty.channel.sctp.oio.OioSctpChannel$2  io.netty.channel.sctp.oio.OioSctpChannel$OioSctpChannelConfig
InnerClasses:
  public abstract Unsafe = io.netty.channel.Channel$Unsafe of io.netty.channel.Channel
  public abstract Handle = io.netty.channel.RecvByteBufAllocator$Handle of io.netty.channel.RecvByteBufAllocator
  io.netty.channel.sctp.oio.OioSctpChannel$1
  io.netty.channel.sctp.oio.OioSctpChannel$2
  private final OioSctpChannelConfig = io.netty.channel.sctp.oio.OioSctpChannel$OioSctpChannelConfig of io.netty.channel.sctp.oio.OioSctpChannel