class sun.nio.ch.Net
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.ch.Net
  super_class: java.lang.Object
{
  private static boolean revealLocalAddress;
    descriptor: Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static volatile boolean propRevealLocalAddress;
    descriptor: Z
    flags: (0x004a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE

  private static final boolean exclusiveBind;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=0
         0: .line 50
            invokestatic sun.nio.ch.Net.isExclusiveBindAvailable:()I
            istore 0 /* availLevel */
        start local 0 // int availLevel
         1: .line 51
            iload 0 /* availLevel */
            iflt 16
         2: .line 54
            new sun.nio.ch.Net$1
            dup
            invokespecial sun.nio.ch.Net$1.<init>:()V
         3: .line 53
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
         4: .line 52
            astore 1 /* exclBindProp */
        start local 1 // java.lang.String exclBindProp
         5: .line 60
            aload 1 /* exclBindProp */
            ifnull 11
         6: .line 61
            aload 1 /* exclBindProp */
            invokevirtual java.lang.String.length:()I
            ifne 8
         7: .line 62
            iconst_1
            goto 9
      StackMap locals: int java.lang.String
      StackMap stack:
         8: aload 1 /* exclBindProp */
            invokestatic java.lang.Boolean.parseBoolean:(Ljava/lang/String;)Z
         9: .line 61
      StackMap locals:
      StackMap stack: int
            putstatic sun.nio.ch.Net.exclusiveBind:Z
        10: .line 63
            goto 17
      StackMap locals:
      StackMap stack:
        11: iload 0 /* availLevel */
            iconst_1
            if_icmpne 14
        12: .line 64
            iconst_1
            putstatic sun.nio.ch.Net.exclusiveBind:Z
        13: .line 65
            goto 17
        14: .line 66
      StackMap locals:
      StackMap stack:
            iconst_0
            putstatic sun.nio.ch.Net.exclusiveBind:Z
        end local 1 // java.lang.String exclBindProp
        15: .line 68
            goto 17
        16: .line 69
      StackMap locals:
      StackMap stack:
            iconst_0
            putstatic sun.nio.ch.Net.exclusiveBind:Z
        end local 0 // int availLevel
        17: .line 233
      StackMap locals:
      StackMap stack:
            invokestatic sun.nio.ch.IOUtil.load:()V
        18: .line 234
            invokestatic sun.nio.ch.Net.initIDs:()V
        19: .line 235
            return
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            1   17     0    availLevel  I
            5   15     1  exclBindProp  Ljava/lang/String;

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.Net this
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // sun.nio.ch.Net this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/Net;

  static boolean useExclusiveBind();
    descriptor: ()Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 79
            getstatic sun.nio.ch.Net.exclusiveBind:Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static java.net.InetSocketAddress checkAddress(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)Ljava/net/InetSocketAddress;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.SocketAddress sa
         0: .line 83
            aload 0 /* sa */
            ifnonnull 2
         1: .line 84
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* sa */
            instanceof java.net.InetSocketAddress
            ifne 4
         3: .line 86
            new java.nio.channels.UnsupportedAddressTypeException
            dup
            invokespecial java.nio.channels.UnsupportedAddressTypeException.<init>:()V
            athrow
         4: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* sa */
            checkcast java.net.InetSocketAddress
            astore 1 /* isa */
        start local 1 // java.net.InetSocketAddress isa
         5: .line 88
            aload 1 /* isa */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 7
         6: .line 89
            new java.nio.channels.UnresolvedAddressException
            dup
            invokespecial java.nio.channels.UnresolvedAddressException.<init>:()V
            athrow
         7: .line 90
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 1 /* isa */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 2 /* addr */
        start local 2 // java.net.InetAddress addr
         8: .line 91
            aload 2 /* addr */
            instanceof java.net.Inet4Address
            ifne 10
            aload 2 /* addr */
            instanceof java.net.Inet6Address
            ifne 10
         9: .line 92
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 93
      StackMap locals: java.net.InetAddress
      StackMap stack:
            aload 1 /* isa */
            areturn
        end local 2 // java.net.InetAddress addr
        end local 1 // java.net.InetSocketAddress isa
        end local 0 // java.net.SocketAddress sa
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0    sa  Ljava/net/SocketAddress;
            5   11     1   isa  Ljava/net/InetSocketAddress;
            8   11     2  addr  Ljava/net/InetAddress;
    MethodParameters:
      Name  Flags
      sa    

  static java.net.InetSocketAddress asInetSocketAddress(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)Ljava/net/InetSocketAddress;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.SocketAddress sa
         0: .line 97
            aload 0 /* sa */
            instanceof java.net.InetSocketAddress
            ifne 2
         1: .line 98
            new java.nio.channels.UnsupportedAddressTypeException
            dup
            invokespecial java.nio.channels.UnsupportedAddressTypeException.<init>:()V
            athrow
         2: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* sa */
            checkcast java.net.InetSocketAddress
            areturn
        end local 0 // java.net.SocketAddress sa
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    sa  Ljava/net/SocketAddress;
    MethodParameters:
      Name  Flags
      sa    

  static void translateToSocketException(java.lang.Exception);
    descriptor: (Ljava/lang/Exception;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.lang.Exception x
         0: .line 105
            aload 0 /* x */
            instanceof java.net.SocketException
            ifeq 2
         1: .line 106
            aload 0 /* x */
            checkcast java.net.SocketException
            athrow
         2: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* x */
            astore 1 /* nx */
        start local 1 // java.lang.Exception nx
         3: .line 108
            aload 0 /* x */
            instanceof java.nio.channels.ClosedChannelException
            ifeq 5
         4: .line 109
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            astore 1 /* nx */
            goto 13
         5: .line 110
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 0 /* x */
            instanceof sun.nio.ch.AlreadyBoundException
            ifeq 7
         6: .line 111
            new java.net.SocketException
            dup
            ldc "Already bound"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            astore 1 /* nx */
            goto 13
         7: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* x */
            instanceof java.nio.channels.NotYetBoundException
            ifeq 9
         8: .line 113
            new java.net.SocketException
            dup
            ldc "Socket is not bound yet"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            astore 1 /* nx */
            goto 13
         9: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* x */
            instanceof java.nio.channels.UnsupportedAddressTypeException
            ifeq 11
        10: .line 115
            new java.net.SocketException
            dup
            ldc "Unsupported address type"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            astore 1 /* nx */
            goto 13
        11: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* x */
            instanceof java.nio.channels.UnresolvedAddressException
            ifeq 13
        12: .line 117
            new java.net.SocketException
            dup
            ldc "Unresolved address"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            astore 1 /* nx */
        13: .line 119
      StackMap locals:
      StackMap stack:
            aload 1 /* nx */
            aload 0 /* x */
            if_acmpeq 15
        14: .line 120
            aload 1 /* nx */
            aload 0 /* x */
            invokevirtual java.lang.Exception.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        15: .line 122
      StackMap locals:
      StackMap stack:
            aload 1 /* nx */
            instanceof java.net.SocketException
            ifeq 17
        16: .line 123
            aload 1 /* nx */
            checkcast java.net.SocketException
            athrow
        17: .line 124
      StackMap locals:
      StackMap stack:
            aload 1 /* nx */
            instanceof java.lang.RuntimeException
            ifeq 19
        18: .line 125
            aload 1 /* nx */
            checkcast java.lang.RuntimeException
            athrow
        19: .line 127
      StackMap locals:
      StackMap stack:
            new java.lang.Error
            dup
            ldc "Untranslated exception"
            aload 1 /* nx */
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception nx
        end local 0 // java.lang.Exception x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0     x  Ljava/lang/Exception;
            3   20     1    nx  Ljava/lang/Exception;
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      x     

  static void translateException(java.lang.Exception, boolean);
    descriptor: (Ljava/lang/Exception;Z)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Exception x
        start local 1 // boolean unknownHostForUnresolved
         0: .line 134
            aload 0 /* x */
            instanceof java.io.IOException
            ifeq 2
         1: .line 135
            aload 0 /* x */
            checkcast java.io.IOException
            athrow
         2: .line 138
      StackMap locals:
      StackMap stack:
            iload 1 /* unknownHostForUnresolved */
            ifeq 5
         3: .line 139
            aload 0 /* x */
            instanceof java.nio.channels.UnresolvedAddressException
            ifeq 5
         4: .line 141
            new java.net.UnknownHostException
            dup
            invokespecial java.net.UnknownHostException.<init>:()V
            athrow
         5: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* x */
            invokestatic sun.nio.ch.Net.translateToSocketException:(Ljava/lang/Exception;)V
         6: .line 144
            return
        end local 1 // boolean unknownHostForUnresolved
        end local 0 // java.lang.Exception x
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    7     0                         x  Ljava/lang/Exception;
            0    7     1  unknownHostForUnresolved  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                          Name  Flags
      x                         
      unknownHostForUnresolved  

  static void translateException(java.lang.Exception);
    descriptor: (Ljava/lang/Exception;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Exception x
         0: .line 149
            aload 0 /* x */
            iconst_0
            invokestatic sun.nio.ch.Net.translateException:(Ljava/lang/Exception;Z)V
         1: .line 150
            return
        end local 0 // java.lang.Exception x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  Ljava/lang/Exception;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      x     

  static java.io.FileDescriptor socket(boolean);
    descriptor: (Z)Ljava/io/FileDescriptor;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // boolean stream
         0: .line 156
            iload 0 /* stream */
            iconst_0
            invokestatic sun.nio.ch.Net.socket0:(ZZ)I
            invokestatic sun.nio.ch.IOUtil.newFD:(I)Ljava/io/FileDescriptor;
            areturn
        end local 0 // boolean stream
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  stream  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      stream  

  static java.io.FileDescriptor serverSocket(boolean);
    descriptor: (Z)Ljava/io/FileDescriptor;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // boolean stream
         0: .line 160
            iload 0 /* stream */
            iconst_1
            invokestatic sun.nio.ch.Net.socket0:(ZZ)I
            invokestatic sun.nio.ch.IOUtil.newFD:(I)Ljava/io/FileDescriptor;
            areturn
        end local 0 // boolean stream
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  stream  Z
    MethodParameters:
        Name  Flags
      stream  

  private static native int isExclusiveBindAvailable();
    descriptor: ()I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native int socket0(boolean, boolean);
    descriptor: (ZZ)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      stream  
      reuse   

  static void bind(java.io.FileDescriptor, java.net.InetAddress, int);
    descriptor: (Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.FileDescriptor fd
        start local 1 // java.net.InetAddress addr
        start local 2 // int port
         0: .line 174
            aload 0 /* fd */
            getstatic sun.nio.ch.Net.exclusiveBind:Z
            aload 1 /* addr */
            iload 2 /* port */
            invokestatic sun.nio.ch.Net.bind0:(Ljava/io/FileDescriptor;ZLjava/net/InetAddress;I)V
         1: .line 175
            return
        end local 2 // int port
        end local 1 // java.net.InetAddress addr
        end local 0 // java.io.FileDescriptor fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0    fd  Ljava/io/FileDescriptor;
            0    2     1  addr  Ljava/net/InetAddress;
            0    2     2  port  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    
      addr  
      port  

  private static native void bind0(java.io.FileDescriptor, boolean, java.net.InetAddress, int);
    descriptor: (Ljava/io/FileDescriptor;ZLjava/net/InetAddress;I)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      fd           
      useExclBind  
      addr         
      port         

  static native int connect(java.io.FileDescriptor, java.net.InetAddress, int, int);
    descriptor: (Ljava/io/FileDescriptor;Ljava/net/InetAddress;II)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      fd            
      remote        
      remotePort    
      trafficClass  

  private static native int localPort(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  private static native java.net.InetAddress localInetAddress(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)Ljava/net/InetAddress;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static java.net.InetSocketAddress localAddress(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)Ljava/net/InetSocketAddress;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.io.FileDescriptor fd
         0: .line 195
            new java.net.InetSocketAddress
            dup
            aload 0 /* fd */
            invokestatic sun.nio.ch.Net.localInetAddress:(Ljava/io/FileDescriptor;)Ljava/net/InetAddress;
         1: .line 196
            aload 0 /* fd */
            invokestatic sun.nio.ch.Net.localPort:(Ljava/io/FileDescriptor;)I
         2: .line 195
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
         3: areturn
         4: .line 197
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* x */
        start local 1 // java.io.IOException x
         5: .line 198
            new java.lang.Error
            dup
            aload 1 /* x */
            invokespecial java.lang.Error.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException x
        end local 0 // java.io.FileDescriptor fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0    fd  Ljava/io/FileDescriptor;
            5    6     1     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static int localPortNumber(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.FileDescriptor fd
         0: .line 204
            aload 0 /* fd */
            invokestatic sun.nio.ch.Net.localPort:(Ljava/io/FileDescriptor;)I
         1: ireturn
         2: .line 205
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* x */
        start local 1 // java.io.IOException x
         3: .line 206
            new java.lang.Error
            dup
            aload 1 /* x */
            invokespecial java.lang.Error.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException x
        end local 0 // java.io.FileDescriptor fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0    fd  Ljava/io/FileDescriptor;
            3    4     1     x  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  private static native int getIntOption0(java.io.FileDescriptor, int);
    descriptor: (Ljava/io/FileDescriptor;I)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    
      opt   

  static int getIntOption(java.io.FileDescriptor, int);
    descriptor: (Ljava/io/FileDescriptor;I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.FileDescriptor fd
        start local 1 // int opt
         0: .line 216
            aload 0 /* fd */
            iload 1 /* opt */
            invokestatic sun.nio.ch.Net.getIntOption0:(Ljava/io/FileDescriptor;I)I
            ireturn
        end local 1 // int opt
        end local 0 // java.io.FileDescriptor fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    fd  Ljava/io/FileDescriptor;
            0    1     1   opt  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    
      opt   

  private static native void setIntOption0(java.io.FileDescriptor, int, int);
    descriptor: (Ljava/io/FileDescriptor;II)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    
      opt   
      arg   

  static void setIntOption(java.io.FileDescriptor, int, int);
    descriptor: (Ljava/io/FileDescriptor;II)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.io.FileDescriptor fd
        start local 1 // int opt
        start local 2 // int arg
         0: .line 227
            aload 0 /* fd */
            iload 1 /* opt */
            iload 2 /* arg */
            invokestatic sun.nio.ch.Net.setIntOption0:(Ljava/io/FileDescriptor;II)V
         1: .line 228
            return
        end local 2 // int arg
        end local 1 // int opt
        end local 0 // java.io.FileDescriptor fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0    fd  Ljava/io/FileDescriptor;
            0    2     1   opt  I
            0    2     2   arg  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    
      opt   
      arg   

  private static native void initIDs();
    descriptor: ()V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  static java.net.InetSocketAddress getRevealedLocalAddress(java.net.InetSocketAddress);
    descriptor: (Ljava/net/InetSocketAddress;)Ljava/net/InetSocketAddress;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.InetSocketAddress addr
         0: .line 241
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* sm */
        start local 1 // java.lang.SecurityManager sm
         1: .line 242
            aload 0 /* addr */
            ifnull 2
            aload 1 /* sm */
            ifnonnull 3
         2: .line 243
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* addr */
            areturn
         3: .line 245
      StackMap locals:
      StackMap stack:
            invokestatic sun.nio.ch.Net.getRevealLocalAddress:()Z
            ifne 8
         4: .line 248
            aload 1 /* sm */
            aload 0 /* addr */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            iconst_m1
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
         5: .line 250
            goto 8
      StackMap locals:
      StackMap stack: java.lang.SecurityException
         6: pop
         7: .line 252
            aload 0 /* addr */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokestatic sun.nio.ch.Net.getLoopbackAddress:(I)Ljava/net/InetSocketAddress;
            astore 0 /* addr */
         8: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* addr */
            areturn
        end local 1 // java.lang.SecurityManager sm
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  addr  Ljava/net/InetSocketAddress;
            1    9     1    sm  Ljava/lang/SecurityManager;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.SecurityException
    MethodParameters:
      Name  Flags
      addr  

  static java.lang.String getRevealedLocalAddressAsString(java.net.InetSocketAddress);
    descriptor: (Ljava/net/InetSocketAddress;)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.InetSocketAddress addr
         0: .line 259
            invokestatic sun.nio.ch.Net.getRevealLocalAddress:()Z
            ifne 2
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            ifnull 2
         1: .line 260
            aload 0 /* addr */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokestatic sun.nio.ch.Net.getLoopbackAddress:(I)Ljava/net/InetSocketAddress;
            astore 0 /* addr */
         2: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* addr */
            invokevirtual java.net.InetSocketAddress.toString:()Ljava/lang/String;
            areturn
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  addr  Ljava/net/InetSocketAddress;
    MethodParameters:
      Name  Flags
      addr  

  private static boolean getRevealLocalAddress();
    descriptor: ()Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 265
            getstatic sun.nio.ch.Net.propRevealLocalAddress:Z
            ifne 7
         1: .line 269
            new sun.nio.ch.Net$2
            dup
            invokespecial sun.nio.ch.Net$2.<init>:()V
         2: .line 268
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.lang.String
         3: .line 267
            invokestatic java.lang.Boolean.parseBoolean:(Ljava/lang/String;)Z
            putstatic sun.nio.ch.Net.revealLocalAddress:Z
         4: .line 276
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         5: pop
         6: .line 279
      StackMap locals:
      StackMap stack:
            iconst_1
            putstatic sun.nio.ch.Net.propRevealLocalAddress:Z
         7: .line 281
      StackMap locals:
      StackMap stack:
            getstatic sun.nio.ch.Net.revealLocalAddress:Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           1     4       5  Class java.lang.Exception

  private static java.net.InetSocketAddress getLoopbackAddress(int);
    descriptor: (I)Ljava/net/InetSocketAddress;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int port
         0: .line 286
            new java.net.InetSocketAddress
            dup
            aconst_null
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
         1: .line 287
            iload 0 /* port */
         2: .line 286
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
         3: areturn
         4: .line 288
      StackMap locals:
      StackMap stack: java.net.UnknownHostException
            pop
         5: .line 289
            new java.lang.InternalError
            dup
            ldc "Shouldn't reach here."
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // int port
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  port  I
      Exception table:
        from    to  target  type
           0     3       4  Class java.net.UnknownHostException
    MethodParameters:
      Name  Flags
      port  
}
SourceFile: "Net.java"
NestMembers:
  sun.nio.ch.Net$1  sun.nio.ch.Net$2
InnerClasses:
  sun.nio.ch.Net$1
  sun.nio.ch.Net$2