class org.jruby.ext.socket.SocketUtils$1 implements org.jruby.ext.socket.SocketUtils$AddrinfoCallback
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.jruby.ext.socket.SocketUtils$1
  super_class: java.lang.Object
{
  private final org.jruby.Ruby val$runtime;
    descriptor: Lorg/jruby/Ruby;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final org.jruby.runtime.ThreadContext val$context;
    descriptor: Lorg/jruby/runtime/ThreadContext;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final java.util.List val$l;
    descriptor: Ljava/util/List;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.jruby.Ruby, org.jruby.runtime.ThreadContext, java.util.List);
    descriptor: (Lorg/jruby/Ruby;Lorg/jruby/runtime/ThreadContext;Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.jruby.ext.socket.SocketUtils$1 this
         0: .line 179
            aload 0 /* this */
            aload 1
            putfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            aload 2
            putfield org.jruby.ext.socket.SocketUtils$1.val$context:Lorg/jruby/runtime/ThreadContext;
            aload 0 /* this */
            aload 3
            putfield org.jruby.ext.socket.SocketUtils$1.val$l:Ljava/util/List;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.jruby.ext.socket.SocketUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/ext/socket/SocketUtils$1;
    MethodParameters:
             Name  Flags
      val$runtime  final
      val$context  final
      val$l        final

  public void addrinfo(java.net.InetAddress, int, jnr.constants.platform.Sock, java.lang.Boolean);
    descriptor: (Ljava/net/InetAddress;ILjnr/constants/platform/Sock;Ljava/lang/Boolean;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=5
        start local 0 // org.jruby.ext.socket.SocketUtils$1 this
        start local 1 // java.net.InetAddress address
        start local 2 // int port
        start local 3 // jnr.constants.platform.Sock sock
        start local 4 // java.lang.Boolean reverse
         0: .line 182
            aload 1 /* address */
            instanceof java.net.Inet6Address
            istore 5 /* is_ipv6 */
        start local 5 // boolean is_ipv6
         1: .line 183
            iconst_1
            istore 6 /* sock_stream */
        start local 6 // boolean sock_stream
         2: .line 184
            iconst_1
            istore 7 /* sock_dgram */
        start local 7 // boolean sock_dgram
         3: .line 186
            aload 3 /* sock */
            ifnull 9
         4: .line 187
            aload 3 /* sock */
            getstatic jnr.constants.platform.Sock.SOCK_STREAM:Ljnr/constants/platform/Sock;
            if_acmpne 7
         5: .line 188
            iconst_0
            istore 7 /* sock_dgram */
         6: .line 190
            goto 9
      StackMap locals: int int int
      StackMap stack:
         7: aload 3 /* sock */
            getstatic jnr.constants.platform.Sock.SOCK_DGRAM:Ljnr/constants/platform/Sock;
            if_acmpne 9
         8: .line 191
            iconst_0
            istore 6 /* sock_stream */
         9: .line 198
      StackMap locals:
      StackMap stack:
            iload 7 /* sock_dgram */
            ifeq 23
        10: .line 199
            bipush 7
            anewarray org.jruby.runtime.builtin.IRubyObject
            astore 8 /* c */
        start local 8 // org.jruby.runtime.builtin.IRubyObject[] c
        11: .line 200
            aload 8 /* c */
            iconst_0
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 5 /* is_ipv6 */
            ifeq 12
            ldc "AF_INET6"
            goto 13
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby
        12: ldc "AF_INET"
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby java.lang.String
        13: invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        14: .line 201
            aload 8 /* c */
            iconst_1
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 2 /* port */
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            aastore
        15: .line 202
            aload 8 /* c */
            iconst_2
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$context:Lorg/jruby/runtime/ThreadContext;
            aload 1 /* address */
            aload 4 /* reverse */
            invokestatic org.jruby.ext.socket.SocketUtils.getHostAddress:(Lorg/jruby/runtime/ThreadContext;Ljava/net/InetAddress;Ljava/lang/Boolean;)Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        16: .line 203
            aload 8 /* c */
            iconst_3
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 1 /* address */
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        17: .line 204
            aload 8 /* c */
            iconst_4
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 5 /* is_ipv6 */
            ifeq 18
            getstatic jnr.constants.platform.ProtocolFamily.PF_INET6:Ljnr/constants/platform/ProtocolFamily;
            goto 19
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby
        18: getstatic jnr.constants.platform.ProtocolFamily.PF_INET:Ljnr/constants/platform/ProtocolFamily;
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby jnr.constants.platform.ProtocolFamily
        19: invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        20: .line 205
            aload 8 /* c */
            iconst_5
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            getstatic jnr.constants.platform.Sock.SOCK_DGRAM:Ljnr/constants/platform/Sock;
            invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        21: .line 206
            aload 8 /* c */
            bipush 6
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            getstatic jnr.constants.platform.IPProto.IPPROTO_UDP:Ljnr/constants/platform/IPProto;
            invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        22: .line 207
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$l:Ljava/util/List;
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 8 /* c */
            invokestatic org.jruby.RubyArray.newArrayMayCopy:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyArray;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 8 // org.jruby.runtime.builtin.IRubyObject[] c
        23: .line 210
      StackMap locals:
      StackMap stack:
            iload 6 /* sock_stream */
            ifeq 37
        24: .line 211
            bipush 7
            anewarray org.jruby.runtime.builtin.IRubyObject
            astore 8 /* c */
        start local 8 // org.jruby.runtime.builtin.IRubyObject[] c
        25: .line 212
            aload 8 /* c */
            iconst_0
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 5 /* is_ipv6 */
            ifeq 26
            ldc "AF_INET6"
            goto 27
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby
        26: ldc "AF_INET"
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby java.lang.String
        27: invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        28: .line 213
            aload 8 /* c */
            iconst_1
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 2 /* port */
            invokevirtual org.jruby.Ruby.newFixnum:(I)Lorg/jruby/RubyFixnum;
            aastore
        29: .line 214
            aload 8 /* c */
            iconst_2
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$context:Lorg/jruby/runtime/ThreadContext;
            aload 1 /* address */
            aload 4 /* reverse */
            invokestatic org.jruby.ext.socket.SocketUtils.getHostAddress:(Lorg/jruby/runtime/ThreadContext;Ljava/net/InetAddress;Ljava/lang/Boolean;)Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        30: .line 215
            aload 8 /* c */
            iconst_3
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 1 /* address */
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newString:(Ljava/lang/String;)Lorg/jruby/RubyString;
            aastore
        31: .line 216
            aload 8 /* c */
            iconst_4
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            iload 5 /* is_ipv6 */
            ifeq 32
            getstatic jnr.constants.platform.ProtocolFamily.PF_INET6:Ljnr/constants/platform/ProtocolFamily;
            goto 33
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby
        32: getstatic jnr.constants.platform.ProtocolFamily.PF_INET:Ljnr/constants/platform/ProtocolFamily;
      StackMap locals: org.jruby.ext.socket.SocketUtils$1 java.net.InetAddress int jnr.constants.platform.Sock java.lang.Boolean int int int org.jruby.runtime.builtin.IRubyObject[]
      StackMap stack: org.jruby.runtime.builtin.IRubyObject[] int org.jruby.Ruby jnr.constants.platform.ProtocolFamily
        33: invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        34: .line 217
            aload 8 /* c */
            iconst_5
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            getstatic jnr.constants.platform.Sock.SOCK_STREAM:Ljnr/constants/platform/Sock;
            invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        35: .line 218
            aload 8 /* c */
            bipush 6
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            getstatic jnr.constants.platform.IPProto.IPPROTO_TCP:Ljnr/constants/platform/IPProto;
            invokevirtual org.jruby.Ruby.newFixnum:(Ljnr/constants/Constant;)Lorg/jruby/RubyFixnum;
            aastore
        36: .line 219
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$l:Ljava/util/List;
            aload 0 /* this */
            getfield org.jruby.ext.socket.SocketUtils$1.val$runtime:Lorg/jruby/Ruby;
            aload 8 /* c */
            invokestatic org.jruby.RubyArray.newArrayMayCopy:(Lorg/jruby/Ruby;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/RubyArray;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 8 // org.jruby.runtime.builtin.IRubyObject[] c
        37: .line 221
      StackMap locals:
      StackMap stack:
            return
        end local 7 // boolean sock_dgram
        end local 6 // boolean sock_stream
        end local 5 // boolean is_ipv6
        end local 4 // java.lang.Boolean reverse
        end local 3 // jnr.constants.platform.Sock sock
        end local 2 // int port
        end local 1 // java.net.InetAddress address
        end local 0 // org.jruby.ext.socket.SocketUtils$1 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   38     0         this  Lorg/jruby/ext/socket/SocketUtils$1;
            0   38     1      address  Ljava/net/InetAddress;
            0   38     2         port  I
            0   38     3         sock  Ljnr/constants/platform/Sock;
            0   38     4      reverse  Ljava/lang/Boolean;
            1   38     5      is_ipv6  Z
            2   38     6  sock_stream  Z
            3   38     7   sock_dgram  Z
           11   23     8            c  [Lorg/jruby/runtime/builtin/IRubyObject;
           25   37     8            c  [Lorg/jruby/runtime/builtin/IRubyObject;
    MethodParameters:
         Name  Flags
      address  
      port     
      sock     
      reverse  
}
SourceFile: "SocketUtils.java"
EnclosingMethod: org.jruby.ext.socket.SocketUtils.getaddrinfo:(Lorg/jruby/runtime/ThreadContext;[Lorg/jruby/runtime/builtin/IRubyObject;)Lorg/jruby/runtime/builtin/IRubyObject;
NestHost: org.jruby.ext.socket.SocketUtils
InnerClasses:
  org.jruby.ext.socket.SocketUtils$1
  abstract AddrinfoCallback = org.jruby.ext.socket.SocketUtils$AddrinfoCallback of org.jruby.ext.socket.SocketUtils