public class java.net.Socket implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.net.Socket
  super_class: java.lang.Object
{
  private boolean created;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean bound;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean connected;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object closeLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private boolean shutIn;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean shutOut;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  java.net.SocketImpl impl;
    descriptor: Ljava/net/SocketImpl;
    flags: (0x0000) 

  private boolean oldImpl;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private static java.net.SocketImplFactory factory;
    descriptor: Ljava/net/SocketImplFactory;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 1631
            aconst_null
            putstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 86
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 65
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 66
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 77
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 87
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        10: .line 88
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/net/Socket;

  public void <init>(java.net.Proxy);
    descriptor: (Ljava/net/Proxy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.Proxy proxy
         0: .line 118
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 65
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 66
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 77
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 120
            aload 1 /* proxy */
            ifnonnull 11
        10: .line 121
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 123
      StackMap locals: java.net.Socket java.net.Proxy
      StackMap stack:
            aload 1 /* proxy */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 12
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            goto 13
      StackMap locals:
      StackMap stack:
        12: aload 1 /* proxy */
            invokestatic sun.net.ApplicationProxy.create:(Ljava/net/Proxy;)Lsun/net/ApplicationProxy;
      StackMap locals:
      StackMap stack: java.net.Proxy
        13: astore 2 /* p */
        start local 2 // java.net.Proxy p
        14: .line 124
            aload 2 /* p */
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpne 30
        15: .line 125
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 3 /* security */
        start local 3 // java.lang.SecurityManager security
        16: .line 126
            aload 2 /* p */
            invokevirtual java.net.Proxy.address:()Ljava/net/SocketAddress;
            checkcast java.net.InetSocketAddress
            astore 4 /* epoint */
        start local 4 // java.net.InetSocketAddress epoint
        17: .line 127
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            ifnull 19
        18: .line 128
            aload 0 /* this */
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            ldc "Socket"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        19: .line 130
      StackMap locals: java.net.Proxy java.lang.SecurityManager java.net.InetSocketAddress
      StackMap stack:
            aload 3 /* security */
            ifnull 27
        20: .line 131
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 22
        21: .line 132
            new java.net.InetSocketAddress
            dup
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            astore 4 /* epoint */
        22: .line 133
      StackMap locals:
      StackMap stack:
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 24
        23: .line 134
            aload 3 /* security */
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
            goto 27
        24: .line 136
      StackMap locals:
      StackMap stack:
            aload 3 /* security */
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
        25: .line 137
            aload 4 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
        26: .line 136
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        27: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.net.SocksSocketImpl
            dup
            aload 2 /* p */
            invokespecial java.net.SocksSocketImpl.<init>:(Ljava/net/Proxy;)V
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        28: .line 140
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setSocket:(Ljava/net/Socket;)V
        end local 4 // java.net.InetSocketAddress epoint
        end local 3 // java.lang.SecurityManager security
        29: .line 141
            goto 38
        30: .line 142
      StackMap locals:
      StackMap stack:
            aload 2 /* p */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 37
        31: .line 143
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnonnull 35
        32: .line 144
            aload 0 /* this */
            new java.net.PlainSocketImpl
            dup
            invokespecial java.net.PlainSocketImpl.<init>:()V
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        33: .line 145
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setSocket:(Ljava/net/Socket;)V
        34: .line 146
            goto 38
        35: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        36: .line 148
            goto 38
        37: .line 149
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        38: .line 151
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.net.Proxy p
        end local 1 // java.net.Proxy proxy
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   39     0      this  Ljava/net/Socket;
            0   39     1     proxy  Ljava/net/Proxy;
           14   39     2         p  Ljava/net/Proxy;
           16   29     3  security  Ljava/lang/SecurityManager;
           17   29     4    epoint  Ljava/net/InetSocketAddress;
    MethodParameters:
       Name  Flags
      proxy  

  protected void <init>(java.net.SocketImpl);
    descriptor: (Ljava/net/SocketImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketImpl impl
         0: .line 168
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 65
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 66
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 77
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 169
            aload 1 /* impl */
            invokestatic java.net.Socket.checkPermission:(Ljava/net/SocketImpl;)Ljava/lang/Void;
            pop
        10: .line 170
            aload 0 /* this */
            aload 1 /* impl */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        11: .line 171
            aload 1 /* impl */
            ifnull 14
        12: .line 172
            aload 0 /* this */
            invokevirtual java.net.Socket.checkOldImpl:()V
        13: .line 173
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setSocket:(Ljava/net/Socket;)V
        14: .line 175
      StackMap locals: java.net.Socket java.net.SocketImpl
      StackMap stack:
            return
        end local 1 // java.net.SocketImpl impl
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Ljava/net/Socket;
            0   15     1  impl  Ljava/net/SocketImpl;
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      impl  

  private static java.lang.Void checkPermission(java.net.SocketImpl);
    descriptor: (Ljava/net/SocketImpl;)Ljava/lang/Void;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.net.SocketImpl impl
         0: .line 178
            aload 0 /* impl */
            ifnonnull 2
         1: .line 179
            aconst_null
            areturn
         2: .line 181
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* sm */
        start local 1 // java.lang.SecurityManager sm
         3: .line 182
            aload 1 /* sm */
            ifnull 5
         4: .line 183
            aload 1 /* sm */
            getstatic sun.security.util.SecurityConstants.SET_SOCKETIMPL_PERMISSION:Ljava/net/NetPermission;
            invokevirtual java.lang.SecurityManager.checkPermission:(Ljava/security/Permission;)V
         5: .line 185
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.lang.SecurityManager sm
        end local 0 // java.net.SocketImpl impl
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  impl  Ljava/net/SocketImpl;
            3    6     1    sm  Ljava/lang/SecurityManager;
    MethodParameters:
      Name  Flags
      impl  

  public void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // java.lang.String host
        start local 2 // int port
         0: .line 227
            aload 0 /* this */
            aload 1 /* host */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* host */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            goto 2
         1: .line 228
      StackMap locals:
      StackMap stack: uninitialized-this
            new java.net.InetSocketAddress
            dup
            aconst_null
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
         2: .line 229
      StackMap locals: uninitialized-this java.lang.String int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            aconst_null
            iconst_1
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 230
            return
        end local 2 // int port
        end local 1 // java.lang.String host
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1  host  Ljava/lang/String;
            0    4     2  port  I
    Exceptions:
      throws java.net.UnknownHostException, java.io.IOException
    MethodParameters:
      Name  Flags
      host  
      port  

  public void <init>(java.net.InetAddress, int);
    descriptor: (Ljava/net/InetAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // java.net.InetAddress address
        start local 2 // int port
         0: .line 260
            aload 0 /* this */
            aload 1 /* address */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* address */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: aconst_null
         2: .line 261
      StackMap locals: uninitialized-this java.net.InetAddress int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            aconst_null
            iconst_1
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 262
            return
        end local 2 // int port
        end local 1 // java.net.InetAddress address
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/net/Socket;
            0    4     1  address  Ljava/net/InetAddress;
            0    4     2     port  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      address  
      port     

  public void <init>(java.lang.String, int, java.net.InetAddress, int);
    descriptor: (Ljava/lang/String;ILjava/net/InetAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // java.net.Socket this
        start local 1 // java.lang.String host
        start local 2 // int port
        start local 3 // java.net.InetAddress localAddr
        start local 4 // int localPort
         0: .line 300
            aload 0 /* this */
            aload 1 /* host */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* host */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            goto 2
         1: .line 301
      StackMap locals:
      StackMap stack: uninitialized-this
            new java.net.InetSocketAddress
            dup
            aconst_null
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
         2: .line 302
      StackMap locals: uninitialized-this java.lang.String int java.net.InetAddress int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            new java.net.InetSocketAddress
            dup
            aload 3 /* localAddr */
            iload 4 /* localPort */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            iconst_1
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 303
            return
        end local 4 // int localPort
        end local 3 // java.net.InetAddress localAddr
        end local 2 // int port
        end local 1 // java.lang.String host
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/net/Socket;
            0    4     1       host  Ljava/lang/String;
            0    4     2       port  I
            0    4     3  localAddr  Ljava/net/InetAddress;
            0    4     4  localPort  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      host       
      port       
      localAddr  
      localPort  

  public void <init>(java.net.InetAddress, int, java.net.InetAddress, int);
    descriptor: (Ljava/net/InetAddress;ILjava/net/InetAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // java.net.Socket this
        start local 1 // java.net.InetAddress address
        start local 2 // int port
        start local 3 // java.net.InetAddress localAddr
        start local 4 // int localPort
         0: .line 340
            aload 0 /* this */
            aload 1 /* address */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* address */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: aconst_null
         2: .line 341
      StackMap locals: uninitialized-this java.net.InetAddress int java.net.InetAddress int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            new java.net.InetSocketAddress
            dup
            aload 3 /* localAddr */
            iload 4 /* localPort */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            iconst_1
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 342
            return
        end local 4 // int localPort
        end local 3 // java.net.InetAddress localAddr
        end local 2 // int port
        end local 1 // java.net.InetAddress address
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/net/Socket;
            0    4     1    address  Ljava/net/InetAddress;
            0    4     2       port  I
            0    4     3  localAddr  Ljava/net/InetAddress;
            0    4     4  localPort  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      address    
      port       
      localAddr  
      localPort  

  public void <init>(java.lang.String, int, boolean);
    descriptor: (Ljava/lang/String;IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // java.net.Socket this
        start local 1 // java.lang.String host
        start local 2 // int port
        start local 3 // boolean stream
         0: .line 387
            aload 0 /* this */
            aload 1 /* host */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* host */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            goto 2
         1: .line 388
      StackMap locals:
      StackMap stack: uninitialized-this
            new java.net.InetSocketAddress
            dup
            aconst_null
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
         2: .line 389
      StackMap locals: uninitialized-this java.lang.String int int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            aconst_null
            iload 3 /* stream */
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 390
            return
        end local 3 // boolean stream
        end local 2 // int port
        end local 1 // java.lang.String host
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljava/net/Socket;
            0    4     1    host  Ljava/lang/String;
            0    4     2    port  I
            0    4     3  stream  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
        Name  Flags
      host    
      port    
      stream  

  public void <init>(java.net.InetAddress, int, boolean);
    descriptor: (Ljava/net/InetAddress;IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // java.net.Socket this
        start local 1 // java.net.InetAddress host
        start local 2 // int port
        start local 3 // boolean stream
         0: .line 430
            aload 0 /* this */
            aload 1 /* host */
            ifnull 1
            new java.net.InetSocketAddress
            dup
            aload 1 /* host */
            iload 2 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: aconst_null
         2: .line 431
      StackMap locals: uninitialized-this java.net.InetAddress int int
      StackMap stack: uninitialized-this java.net.InetSocketAddress
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            iload 3 /* stream */
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
         3: .line 432
            return
        end local 3 // boolean stream
        end local 2 // int port
        end local 1 // java.net.InetAddress host
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljava/net/Socket;
            0    4     1    host  Ljava/net/InetAddress;
            0    4     2    port  I
            0    4     3  stream  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
        Name  Flags
      host    
      port    
      stream  

  private void <init>(java.net.SocketAddress, java.net.SocketAddress, boolean);
    descriptor: (Ljava/net/SocketAddress;Ljava/net/SocketAddress;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketAddress address
        start local 2 // java.net.SocketAddress localAddr
        start local 3 // boolean stream
         0: .line 434
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 65
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 66
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 77
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 436
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        10: .line 439
            aload 1 /* address */
            ifnonnull 12
        11: .line 440
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
        12: .line 443
      StackMap locals: java.net.Socket java.net.SocketAddress java.net.SocketAddress int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* stream */
            invokevirtual java.net.Socket.createImpl:(Z)V
        13: .line 444
            aload 2 /* localAddr */
            ifnull 15
        14: .line 445
            aload 0 /* this */
            aload 2 /* localAddr */
            invokevirtual java.net.Socket.bind:(Ljava/net/SocketAddress;)V
        15: .line 446
      StackMap locals:
      StackMap stack:
            aload 1 /* address */
            ifnull 21
        16: .line 447
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;)V
        17: .line 448
            goto 21
      StackMap locals:
      StackMap stack: java.io.IOException
        18: astore 4 /* e */
        start local 4 // java.io.IOException e
        19: .line 449
            aload 0 /* this */
            invokevirtual java.net.Socket.close:()V
        20: .line 450
            aload 4 /* e */
            athrow
        end local 4 // java.io.IOException e
        21: .line 452
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean stream
        end local 2 // java.net.SocketAddress localAddr
        end local 1 // java.net.SocketAddress address
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   22     0       this  Ljava/net/Socket;
            0   22     1    address  Ljava/net/SocketAddress;
            0   22     2  localAddr  Ljava/net/SocketAddress;
            0   22     3     stream  Z
           19   21     4          e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          12    17      18  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      address    
      localAddr  
      stream     

  void createImpl(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // boolean stream
         0: .line 463
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 464
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
         2: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            iload 1 /* stream */
            invokevirtual java.net.SocketImpl.create:(Z)V
         3: .line 467
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         4: .line 468
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         5: astore 2 /* e */
        start local 2 // java.io.IOException e
         6: .line 469
            new java.net.SocketException
            dup
            aload 2 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.IOException e
         7: .line 471
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean stream
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljava/net/Socket;
            0    8     1  stream  Z
            6    7     2       e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     4       5  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
        Name  Flags
      stream  

  private void checkOldImpl();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 474
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 475
            return
         2: .line 479
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
         3: .line 480
            new java.net.Socket$1
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$1.<init>:(Ljava/net/Socket;)V
         4: .line 479
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield java.net.Socket.oldImpl:Z
         5: .line 499
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;

  void setImpl();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 506
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnull 4
         1: .line 507
            aload 0 /* this */
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            invokeinterface java.net.SocketImplFactory.createSocketImpl:()Ljava/net/SocketImpl;
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
         2: .line 508
            aload 0 /* this */
            invokevirtual java.net.Socket.checkOldImpl:()V
         3: .line 509
            goto 5
         4: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.net.SocksSocketImpl
            dup
            invokespecial java.net.SocksSocketImpl.<init>:()V
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
         5: .line 514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnull 7
         6: .line 515
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setSocket:(Ljava/net/Socket;)V
         7: .line 516
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/Socket;

  java.net.SocketImpl getImpl();
    descriptor: ()Ljava/net/SocketImpl;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 528
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 2
         1: .line 529
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
         2: .line 530
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public void connect(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketAddress endpoint
         0: .line 547
            aload 0 /* this */
            aload 1 /* endpoint */
            iconst_0
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;I)V
         1: .line 548
            return
        end local 1 // java.net.SocketAddress endpoint
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/net/Socket;
            0    2     1  endpoint  Ljava/net/SocketAddress;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      endpoint  

  public void connect(java.net.SocketAddress, int);
    descriptor: (Ljava/net/SocketAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketAddress endpoint
        start local 2 // int timeout
         0: .line 568
            aload 1 /* endpoint */
            ifnonnull 2
         1: .line 569
            new java.lang.IllegalArgumentException
            dup
            ldc "connect: The address can't be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 571
      StackMap locals:
      StackMap stack:
            iload 2 /* timeout */
            ifge 4
         3: .line 572
            new java.lang.IllegalArgumentException
            dup
            ldc "connect: timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 6
         5: .line 575
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 577
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 8
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifeq 8
         7: .line 578
            new java.net.SocketException
            dup
            ldc "already connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 580
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            instanceof java.net.InetSocketAddress
            ifne 10
         9: .line 581
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 583
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            checkcast java.net.InetSocketAddress
            astore 3 /* epoint */
        start local 3 // java.net.InetSocketAddress epoint
        11: .line 584
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 4 /* addr */
        start local 4 // java.net.InetAddress addr
        12: .line 585
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 5 /* port */
        start local 5 // int port
        13: .line 586
            aload 0 /* this */
            aload 4 /* addr */
            ldc "connect"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 588
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 6 /* security */
        start local 6 // java.lang.SecurityManager security
        15: .line 589
            aload 6 /* security */
            ifnull 19
        16: .line 590
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 18
        17: .line 591
            aload 6 /* security */
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            iload 5 /* port */
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
            goto 19
        18: .line 593
      StackMap locals: java.net.Socket java.net.SocketAddress int java.net.InetSocketAddress java.net.InetAddress int java.lang.SecurityManager
      StackMap stack:
            aload 6 /* security */
            aload 4 /* addr */
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            iload 5 /* port */
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        19: .line 595
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 21
        20: .line 596
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
        21: .line 597
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 23
        22: .line 598
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 3 /* epoint */
            iload 2 /* timeout */
            invokevirtual java.net.SocketImpl.connect:(Ljava/net/SocketAddress;I)V
            goto 29
        23: .line 599
      StackMap locals:
      StackMap stack:
            iload 2 /* timeout */
            ifne 28
        24: .line 600
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 26
        25: .line 601
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 4 /* addr */
            invokevirtual java.net.InetAddress.getHostName:()Ljava/lang/String;
            iload 5 /* port */
            invokevirtual java.net.SocketImpl.connect:(Ljava/lang/String;I)V
            goto 29
        26: .line 603
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 4 /* addr */
            iload 5 /* port */
            invokevirtual java.net.SocketImpl.connect:(Ljava/net/InetAddress;I)V
        27: .line 604
            goto 29
        28: .line 605
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "SocketImpl.connect(addr, timeout)"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        29: .line 606
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
        30: .line 611
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        31: .line 612
            return
        end local 6 // java.lang.SecurityManager security
        end local 5 // int port
        end local 4 // java.net.InetAddress addr
        end local 3 // java.net.InetSocketAddress epoint
        end local 2 // int timeout
        end local 1 // java.net.SocketAddress endpoint
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Ljava/net/Socket;
            0   32     1  endpoint  Ljava/net/SocketAddress;
            0   32     2   timeout  I
           11   32     3    epoint  Ljava/net/InetSocketAddress;
           12   32     4      addr  Ljava/net/InetAddress;
           13   32     5      port  I
           15   32     6  security  Ljava/lang/SecurityManager;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      endpoint  
      timeout   

  public void bind(java.net.SocketAddress);
    descriptor: (Ljava/net/SocketAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketAddress bindpoint
         0: .line 630
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 631
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 4
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifeq 4
         3: .line 633
            new java.net.SocketException
            dup
            ldc "Already bound"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 635
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            ifnull 6
            aload 1 /* bindpoint */
            instanceof java.net.InetSocketAddress
            ifne 6
         5: .line 636
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 637
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            checkcast java.net.InetSocketAddress
            astore 2 /* epoint */
        start local 2 // java.net.InetSocketAddress epoint
         7: .line 638
            aload 2 /* epoint */
            ifnull 9
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 9
         8: .line 639
            new java.net.SocketException
            dup
            ldc "Unresolved address"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 640
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 2 /* epoint */
            ifnonnull 11
        10: .line 641
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            astore 2 /* epoint */
        11: .line 643
      StackMap locals:
      StackMap stack:
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 3 /* addr */
        start local 3 // java.net.InetAddress addr
        12: .line 644
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 4 /* port */
        start local 4 // int port
        13: .line 645
            aload 0 /* this */
            aload 3 /* addr */
            ldc "bind"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 646
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 5 /* security */
        start local 5 // java.lang.SecurityManager security
        15: .line 647
            aload 5 /* security */
            ifnull 17
        16: .line 648
            aload 5 /* security */
            iload 4 /* port */
            invokevirtual java.lang.SecurityManager.checkListen:(I)V
        17: .line 650
      StackMap locals: java.net.InetAddress int java.lang.SecurityManager
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            aload 3 /* addr */
            iload 4 /* port */
            invokevirtual java.net.SocketImpl.bind:(Ljava/net/InetAddress;I)V
        18: .line 651
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        19: .line 652
            return
        end local 5 // java.lang.SecurityManager security
        end local 4 // int port
        end local 3 // java.net.InetAddress addr
        end local 2 // java.net.InetSocketAddress epoint
        end local 1 // java.net.SocketAddress bindpoint
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Ljava/net/Socket;
            0   20     1  bindpoint  Ljava/net/SocketAddress;
            7   20     2     epoint  Ljava/net/InetSocketAddress;
           12   20     3       addr  Ljava/net/InetAddress;
           13   20     4       port  I
           15   20     5   security  Ljava/lang/SecurityManager;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      bindpoint  

  private void checkAddress(java.net.InetAddress, java.lang.String);
    descriptor: (Ljava/net/InetAddress;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // java.net.InetAddress addr
        start local 2 // java.lang.String op
         0: .line 655
            aload 1 /* addr */
            ifnonnull 2
         1: .line 656
            return
         2: .line 658
      StackMap locals:
      StackMap stack:
            aload 1 /* addr */
            instanceof java.net.Inet4Address
            ifne 4
            aload 1 /* addr */
            instanceof java.net.Inet6Address
            ifne 4
         3: .line 659
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            aload 2 /* op */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ": invalid address type"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 661
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String op
        end local 1 // java.net.InetAddress addr
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/net/Socket;
            0    5     1  addr  Ljava/net/InetAddress;
            0    5     2    op  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      addr  
      op    

  final void postAccept();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 667
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
         1: .line 668
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         2: .line 669
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
         3: .line 670
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;

  void setCreated();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 673
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         1: .line 674
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;

  void setBound();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 677
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
         1: .line 678
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;

  void setConnected();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 681
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
         1: .line 682
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;

  public java.net.InetAddress getInetAddress();
    descriptor: ()Ljava/net/InetAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 695
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 696
            aconst_null
            areturn
         2: .line 698
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getInetAddress:()Ljava/net/InetAddress;
         3: areturn
         4: .line 699
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 701
            aconst_null
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.SocketException

  public java.net.InetAddress getLocalAddress();
    descriptor: ()Ljava/net/InetAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 714
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 715
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            areturn
         2: .line 716
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         3: .line 718
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            bipush 15
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.net.InetAddress
            astore 1 /* in */
         4: .line 720
            invokestatic java.net.NetUtil.doRevealLocalAddress:()Z
            ifne 8
         5: .line 721
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 2 /* sm */
        start local 2 // java.lang.SecurityManager sm
         6: .line 722
            aload 2 /* sm */
            ifnull 8
         7: .line 723
            aload 2 /* sm */
            aload 1 /* in */
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            iconst_m1
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        end local 2 // java.lang.SecurityManager sm
         8: .line 725
      StackMap locals: java.net.InetAddress
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.net.InetAddress.isAnyLocalAddress:()Z
            ifeq 15
         9: .line 726
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        10: .line 728
            goto 15
      StackMap locals:
      StackMap stack: java.lang.SecurityException
        11: pop
        12: .line 729
            invokestatic java.net.InetAddress.getLoopbackAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
            goto 15
        13: .line 730
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
        14: .line 731
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        15: .line 733
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            areturn
        end local 1 // java.net.InetAddress in
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljava/net/Socket;
            3   16     1    in  Ljava/net/InetAddress;
            6    8     2    sm  Ljava/lang/SecurityManager;
      Exception table:
        from    to  target  type
           3    10      11  Class java.lang.SecurityException
           3    10      13  Class java.lang.Exception

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 747
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 748
            iconst_0
            ireturn
         2: .line 750
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getPort:()I
         3: ireturn
         4: .line 751
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 754
            iconst_m1
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.SocketException

  public int getLocalPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 768
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 769
            iconst_m1
            ireturn
         2: .line 771
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getLocalPort:()I
         3: ireturn
         4: .line 772
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 775
            iconst_m1
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.SocketException

  public java.net.SocketAddress getRemoteSocketAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 796
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 797
            aconst_null
            areturn
         2: .line 798
      StackMap locals:
      StackMap stack:
            new java.net.InetSocketAddress
            dup
            aload 0 /* this */
            invokevirtual java.net.Socket.getInetAddress:()Ljava/net/InetAddress;
            aload 0 /* this */
            invokevirtual java.net.Socket.getPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;

  public java.net.SocketAddress getLocalSocketAddress();
    descriptor: ()Ljava/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 822
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 823
            aconst_null
            areturn
         2: .line 824
      StackMap locals:
      StackMap stack:
            new java.net.InetSocketAddress
            dup
            aload 0 /* this */
            invokevirtual java.net.Socket.getLocalAddress:()Ljava/net/InetAddress;
            aload 0 /* this */
            invokevirtual java.net.Socket.getLocalPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;

  public java.nio.channels.SocketChannel getChannel();
    descriptor: ()Ljava/nio/channels/SocketChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 845
            aconst_null
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/Socket;

  public java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 894
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 895
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 896
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 897
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 898
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isInputShutdown:()Z
            ifeq 6
         5: .line 899
            new java.net.SocketException
            dup
            ldc "Socket input is shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 901
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* is */
        start local 1 // java.io.InputStream is
         7: .line 904
            new java.net.Socket$2
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$2.<init>:(Ljava/net/Socket;)V
         8: .line 903
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.io.InputStream
            astore 1 /* is */
         9: .line 909
            goto 12
      StackMap locals: java.net.Socket java.io.InputStream
      StackMap stack: java.security.PrivilegedActionException
        10: astore 2 /* e */
        start local 2 // java.security.PrivilegedActionException e
        11: .line 910
            aload 2 /* e */
            invokevirtual java.security.PrivilegedActionException.getException:()Ljava/lang/Exception;
            checkcast java.io.IOException
            athrow
        end local 2 // java.security.PrivilegedActionException e
        12: .line 912
      StackMap locals:
      StackMap stack:
            aload 1 /* is */
            areturn
        end local 1 // java.io.InputStream is
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/net/Socket;
            7   13     1    is  Ljava/io/InputStream;
           11   12     2     e  Ljava/security/PrivilegedActionException;
      Exception table:
        from    to  target  type
           7     9      10  Class java.security.PrivilegedActionException
    Exceptions:
      throws java.io.IOException

  public java.io.OutputStream getOutputStream();
    descriptor: ()Ljava/io/OutputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 934
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 935
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 936
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 937
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 938
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 939
            new java.net.SocketException
            dup
            ldc "Socket output is shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 941
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* os */
        start local 1 // java.io.OutputStream os
         7: .line 944
            new java.net.Socket$3
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$3.<init>:(Ljava/net/Socket;)V
         8: .line 943
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.io.OutputStream
            astore 1 /* os */
         9: .line 949
            goto 12
      StackMap locals: java.net.Socket java.io.OutputStream
      StackMap stack: java.security.PrivilegedActionException
        10: astore 2 /* e */
        start local 2 // java.security.PrivilegedActionException e
        11: .line 950
            aload 2 /* e */
            invokevirtual java.security.PrivilegedActionException.getException:()Ljava/lang/Exception;
            checkcast java.io.IOException
            athrow
        end local 2 // java.security.PrivilegedActionException e
        12: .line 952
      StackMap locals:
      StackMap stack:
            aload 1 /* os */
            areturn
        end local 1 // java.io.OutputStream os
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/net/Socket;
            7   13     1    os  Ljava/io/OutputStream;
           11   12     2     e  Ljava/security/PrivilegedActionException;
      Exception table:
        from    to  target  type
           7     9      10  Class java.security.PrivilegedActionException
    Exceptions:
      throws java.io.IOException

  public void setTcpNoDelay(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // boolean on
         0: .line 970
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 971
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 972
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_1
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         3: .line 973
            return
        end local 1 // boolean on
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1    on  Z
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      on    

  public boolean getTcpNoDelay();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 986
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 987
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 988
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_1
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public void setSoLinger(boolean, int);
    descriptor: (ZI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // boolean on
        start local 2 // int linger
         0: .line 1007
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1008
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1009
      StackMap locals:
      StackMap stack:
            iload 1 /* on */
            ifne 5
         3: .line 1010
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 128
            new java.lang.Boolean
            dup
            iload 1 /* on */
            invokespecial java.lang.Boolean.<init>:(Z)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         4: .line 1011
            goto 10
         5: .line 1012
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ifge 7
         6: .line 1013
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid value for SO_LINGER"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 1015
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ldc 65535
            if_icmple 9
         8: .line 1016
            ldc 65535
            istore 2 /* linger */
         9: .line 1017
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 128
            new java.lang.Integer
            dup
            iload 2 /* linger */
            invokespecial java.lang.Integer.<init>:(I)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
        10: .line 1019
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int linger
        end local 1 // boolean on
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljava/net/Socket;
            0   11     1      on  Z
            0   11     2  linger  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
        Name  Flags
      on      
      linger  

  public int getSoLinger();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1035
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1036
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1037
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 128
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            astore 1 /* o */
        start local 1 // java.lang.Object o
         3: .line 1038
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1039
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1041
      StackMap locals: java.lang.Object
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
            3    6     1     o  Ljava/lang/Object;
    Exceptions:
      throws java.net.SocketException

  public void sendUrgentData(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int data
         0: .line 1056
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.supportsUrgentData:()Z
            ifne 2
         1: .line 1057
            new java.net.SocketException
            dup
            ldc "Urgent data not supported"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1059
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iload 1 /* data */
            invokevirtual java.net.SocketImpl.sendUrgentData:(I)V
         3: .line 1060
            return
        end local 1 // int data
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1  data  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      data  

  public void setOOBInline(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // boolean on
         0: .line 1088
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1089
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1090
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4099
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         3: .line 1091
            return
        end local 1 // boolean on
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1    on  Z
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      on    

  public boolean getOOBInline();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1105
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1106
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4099
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public synchronized void setSoTimeout(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int timeout
         0: .line 1128
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1129
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1130
      StackMap locals:
      StackMap stack:
            iload 1 /* timeout */
            ifge 4
         3: .line 1131
            new java.lang.IllegalArgumentException
            dup
            ldc "timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4102
            new java.lang.Integer
            dup
            iload 1 /* timeout */
            invokespecial java.lang.Integer.<init>:(I)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1134
            return
        end local 1 // int timeout
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljava/net/Socket;
            0    6     1  timeout  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
         Name  Flags
      timeout  

  public synchronized int getSoTimeout();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1148
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1149
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4102
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            astore 1 /* o */
        start local 1 // java.lang.Object o
         3: .line 1152
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1153
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1155
      StackMap locals: java.lang.Object
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
            3    6     1     o  Ljava/lang/Object;
    Exceptions:
      throws java.net.SocketException

  public synchronized void setSendBufferSize(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int size
         0: .line 1184
            iload 1 /* size */
            ifgt 2
         1: .line 1185
            new java.lang.IllegalArgumentException
            dup
            ldc "negative send size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1188
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4097
            new java.lang.Integer
            dup
            iload 1 /* size */
            invokespecial java.lang.Integer.<init>:(I)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1190
            return
        end local 1 // int size
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
            0    6     1  size  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      size  

  public synchronized int getSendBufferSize();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1206
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1207
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1208
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1209
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4097
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            astore 2 /* o */
        start local 2 // java.lang.Object o
         4: .line 1210
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1211
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1213
      StackMap locals: int java.lang.Object
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // java.lang.Object o
        end local 1 // int result
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljava/net/Socket;
            3    7     1  result  I
            4    7     2       o  Ljava/lang/Object;
    Exceptions:
      throws java.net.SocketException

  public synchronized void setReceiveBufferSize(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int size
         0: .line 1258
            iload 1 /* size */
            ifgt 2
         1: .line 1259
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid receive size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1262
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4098
            new java.lang.Integer
            dup
            iload 1 /* size */
            invokespecial java.lang.Integer.<init>:(I)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1264
            return
        end local 1 // int size
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
            0    6     1  size  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      size  

  public synchronized int getReceiveBufferSize();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1280
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1281
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1282
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1283
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4098
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            astore 2 /* o */
        start local 2 // java.lang.Object o
         4: .line 1284
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1285
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1287
      StackMap locals: int java.lang.Object
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // java.lang.Object o
        end local 1 // int result
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljava/net/Socket;
            3    7     1  result  I
            4    7     2       o  Ljava/lang/Object;
    Exceptions:
      throws java.net.SocketException

  public void setKeepAlive(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // boolean on
         0: .line 1300
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1301
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            bipush 8
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         3: .line 1303
            return
        end local 1 // boolean on
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1    on  Z
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      on    

  public boolean getKeepAlive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1316
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1317
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            bipush 8
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public void setTrafficClass(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int tc
         0: .line 1368
            iload 1 /* tc */
            iflt 1
            iload 1 /* tc */
            sipush 255
            if_icmple 2
         1: .line 1369
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "tc is not in range 0 -- 255"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1372
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1373
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_3
            new java.lang.Integer
            dup
            iload 1 /* tc */
            invokespecial java.lang.Integer.<init>:(I)V
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1374
            return
        end local 1 // int tc
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
            0    6     1    tc  I
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      tc    

  public int getTrafficClass();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1393
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_3
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public void setReuseAddress(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // boolean on
         0: .line 1432
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1433
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_4
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         3: .line 1435
            return
        end local 1 // boolean on
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/Socket;
            0    4     1    on  Z
    Exceptions:
      throws java.net.SocketException
    MethodParameters:
      Name  Flags
      on    

  public boolean getReuseAddress();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1448
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1449
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_4
            invokevirtual java.net.SocketImpl.getOption:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.net.SocketException

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1476
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1477
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         2: .line 1478
            aload 1
            monitorexit
         3: return
         4: .line 1479
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifeq 6
         5: .line 1480
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.close:()V
         6: .line 1481
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.closed:Z
         7: .line 1476
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 1483
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           1     3       9  any
           4     8       9  any
           9    10       9  any
    Exceptions:
      throws java.io.IOException

  public void shutdownInput();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1504
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1505
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1507
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1508
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isInputShutdown:()Z
            ifeq 6
         5: .line 1509
            new java.net.SocketException
            dup
            ldc "Socket input is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownInput:()V
         7: .line 1511
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutIn:Z
         8: .line 1512
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.io.IOException

  public void shutdownOutput();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1534
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1535
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1536
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1537
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1538
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 1539
            new java.net.SocketException
            dup
            ldc "Socket output is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownOutput:()V
         7: .line 1541
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutOut:Z
         8: .line 1542
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/Socket;
    Exceptions:
      throws java.io.IOException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1551
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifeq 7
         1: .line 1552
            new java.lang.StringBuilder
            dup
            ldc "Socket[addr="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getInetAddress:()Ljava/net/InetAddress;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 1553
            ldc ",port="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getPort:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 1554
            ldc ",localport="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getLocalPort:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 1552
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: areturn
         6: .line 1555
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         7: .line 1557
      StackMap locals:
      StackMap stack:
            ldc "Socket[unconnected]"
            areturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           0     5       6  Class java.net.SocketException

  public boolean isConnected();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1573
            aload 0 /* this */
            getfield java.net.Socket.connected:Z
            ifne 1
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;

  public boolean isBound();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1590
            aload 0 /* this */
            getfield java.net.Socket.bound:Z
            ifne 1
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1601
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1602
            aload 0 /* this */
            getfield java.net.Socket.closed:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 1601
      StackMap locals: java.net.Socket java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean isInputShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1614
            aload 0 /* this */
            getfield java.net.Socket.shutIn:Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/Socket;

  public boolean isOutputShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1625
            aload 0 /* this */
            getfield java.net.Socket.shutOut:Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/Socket;

  public static synchronized void setSocketImplFactory(java.net.SocketImplFactory);
    descriptor: (Ljava/net/SocketImplFactory;)V
    flags: (0x0029) ACC_PUBLIC, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.SocketImplFactory fac
         0: .line 1660
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnull 2
         1: .line 1661
            new java.net.SocketException
            dup
            ldc "factory already defined"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1663
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* security */
        start local 1 // java.lang.SecurityManager security
         3: .line 1664
            aload 1 /* security */
            ifnull 5
         4: .line 1665
            aload 1 /* security */
            invokevirtual java.lang.SecurityManager.checkSetFactory:()V
         5: .line 1667
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* fac */
            putstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
         6: .line 1668
            return
        end local 1 // java.lang.SecurityManager security
        end local 0 // java.net.SocketImplFactory fac
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0       fac  Ljava/net/SocketImplFactory;
            3    7     1  security  Ljava/lang/SecurityManager;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fac   

  public void setPerformancePreferences(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=4, args_size=4
        start local 0 // java.net.Socket this
        start local 1 // int connectionTime
        start local 2 // int latency
        start local 3 // int bandwidth
         0: .line 1713
            return
        end local 3 // int bandwidth
        end local 2 // int latency
        end local 1 // int connectionTime
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Ljava/net/Socket;
            0    1     1  connectionTime  I
            0    1     2         latency  I
            0    1     3       bandwidth  I
    MethodParameters:
                Name  Flags
      connectionTime  
      latency         
      bandwidth       
}
SourceFile: "Socket.java"
NestMembers:
  java.net.Socket$1  java.net.Socket$2  java.net.Socket$3
InnerClasses:
  public final Type = java.net.Proxy$Type of java.net.Proxy
  java.net.Socket$1
  java.net.Socket$2
  java.net.Socket$3