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

  private static java.util.Set<java.net.SocketOption<?>> options;
    descriptor: Ljava/util/Set;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Signature: Ljava/util/Set<Ljava/net/SocketOption<*>;>;

  private static boolean optionsSet;
    descriptor: Z
    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 1665
            aconst_null
            putstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
         1: .line 1811
            iconst_0
            putstatic java.net.Socket.optionsSet:Z
            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 87
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 68
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 88
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        10: .line 89
            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=6, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.Proxy proxy
         0: .line 119
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 68
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 121
            aload 1 /* proxy */
            ifnonnull 11
        10: .line 122
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 124
      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
        12: .line 125
      StackMap locals:
      StackMap stack:
            aload 1 /* proxy */
            invokestatic sun.net.ApplicationProxy.create:(Ljava/net/Proxy;)Lsun/net/ApplicationProxy;
        13: .line 124
      StackMap locals:
      StackMap stack: java.net.Proxy
            astore 2 /* p */
        start local 2 // java.net.Proxy p
        14: .line 126
            aload 2 /* p */
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            astore 3 /* type */
        start local 3 // java.net.Proxy$Type type
        15: .line 127
            aload 3 /* type */
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpeq 16
            aload 3 /* type */
            getstatic java.net.Proxy$Type.HTTP:Ljava/net/Proxy$Type;
            if_acmpne 33
        16: .line 128
      StackMap locals: java.net.Proxy java.net.Proxy$Type
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 4 /* security */
        start local 4 // java.lang.SecurityManager security
        17: .line 129
            aload 2 /* p */
            invokevirtual java.net.Proxy.address:()Ljava/net/SocketAddress;
            checkcast java.net.InetSocketAddress
            astore 5 /* epoint */
        start local 5 // java.net.InetSocketAddress epoint
        18: .line 130
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            ifnull 20
        19: .line 131
            aload 0 /* this */
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            ldc "Socket"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        20: .line 133
      StackMap locals: java.lang.SecurityManager java.net.InetSocketAddress
      StackMap stack:
            aload 4 /* security */
            ifnull 28
        21: .line 134
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 23
        22: .line 135
            new java.net.InetSocketAddress
            dup
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            astore 5 /* epoint */
        23: .line 136
      StackMap locals:
      StackMap stack:
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 25
        24: .line 137
            aload 4 /* security */
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
            goto 28
        25: .line 139
      StackMap locals:
      StackMap stack:
            aload 4 /* security */
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
        26: .line 140
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
        27: .line 139
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        28: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* type */
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpne 29
            new java.net.SocksSocketImpl
            dup
            aload 2 /* p */
            invokespecial java.net.SocksSocketImpl.<init>:(Ljava/net/Proxy;)V
            goto 30
        29: .line 143
      StackMap locals:
      StackMap stack: java.net.Socket
            new java.net.HttpConnectSocketImpl
            dup
            aload 2 /* p */
            invokespecial java.net.HttpConnectSocketImpl.<init>:(Ljava/net/Proxy;)V
        30: .line 142
      StackMap locals: java.net.Socket java.net.Proxy java.net.Proxy java.net.Proxy$Type java.lang.SecurityManager java.net.InetSocketAddress
      StackMap stack: java.net.Socket java.net.PlainSocketImpl
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        31: .line 144
            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 5 // java.net.InetSocketAddress epoint
        end local 4 // java.lang.SecurityManager security
        32: .line 145
            goto 41
        33: .line 146
      StackMap locals:
      StackMap stack:
            aload 2 /* p */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 40
        34: .line 147
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnonnull 38
        35: .line 148
            aload 0 /* this */
            new java.net.PlainSocketImpl
            dup
            invokespecial java.net.PlainSocketImpl.<init>:()V
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        36: .line 149
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setSocket:(Ljava/net/Socket;)V
        37: .line 150
            goto 41
        38: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        39: .line 152
            goto 41
        40: .line 153
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        41: .line 155
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.net.Proxy$Type type
        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   42     0      this  Ljava/net/Socket;
            0   42     1     proxy  Ljava/net/Proxy;
           14   42     2         p  Ljava/net/Proxy;
           15   42     3      type  Ljava/net/Proxy$Type;
           17   32     4  security  Ljava/lang/SecurityManager;
           18   32     5    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 172
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 68
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 173
            aload 1 /* impl */
            invokestatic java.net.Socket.checkPermission:(Ljava/net/SocketImpl;)Ljava/lang/Void;
            pop
        10: .line 174
            aload 0 /* this */
            aload 1 /* impl */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        11: .line 175
            aload 1 /* impl */
            ifnull 14
        12: .line 176
            aload 0 /* this */
            invokevirtual java.net.Socket.checkOldImpl:()V
        13: .line 177
            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 179
      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 182
            aload 0 /* impl */
            ifnonnull 2
         1: .line 183
            aconst_null
            areturn
         2: .line 185
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* sm */
        start local 1 // java.lang.SecurityManager sm
         3: .line 186
            aload 1 /* sm */
            ifnull 5
         4: .line 187
            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 189
      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 231
            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 232
      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 233
      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 234
            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 264
            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 265
      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 266
            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 306
            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 307
      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 308
      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 309
            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 348
            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 349
      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 350
            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 395
            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 396
      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 397
      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 398
            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 438
            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 439
      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 440
            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=6, 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 442
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 67
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 68
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.oldImpl:Z
         9: .line 444
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
        10: .line 447
            aload 1 /* address */
            ifnonnull 12
        11: .line 448
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
        12: .line 451
      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 452
            aload 2 /* localAddr */
            ifnull 15
        14: .line 453
            aload 0 /* this */
            aload 2 /* localAddr */
            invokevirtual java.net.Socket.bind:(Ljava/net/SocketAddress;)V
        15: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;)V
        16: .line 455
            goto 23
      StackMap locals:
      StackMap stack: java.lang.Exception
        17: astore 4 /* e */
        start local 4 // java.lang.Exception e
        18: .line 457
            aload 0 /* this */
            invokevirtual java.net.Socket.close:()V
        19: .line 458
            goto 22
      StackMap locals: java.net.Socket java.net.SocketAddress java.net.SocketAddress int java.lang.Exception
      StackMap stack: java.io.IOException
        20: astore 5 /* ce */
        start local 5 // java.io.IOException ce
        21: .line 459
            aload 4 /* e */
            aload 5 /* ce */
            invokevirtual java.lang.Exception.addSuppressed:(Ljava/lang/Throwable;)V
        end local 5 // java.io.IOException ce
        22: .line 461
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            athrow
        end local 4 // java.lang.Exception e
        23: .line 463
      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   24     0       this  Ljava/net/Socket;
            0   24     1    address  Ljava/net/SocketAddress;
            0   24     2  localAddr  Ljava/net/SocketAddress;
            0   24     3     stream  Z
           18   23     4          e  Ljava/lang/Exception;
           21   22     5         ce  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          12    16      17  Class java.io.IOException
          12    16      17  Class java.lang.IllegalArgumentException
          12    16      17  Class java.lang.SecurityException
          18    19      20  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 474
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 475
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
         2: .line 477
      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 478
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         4: .line 479
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         5: astore 2 /* e */
        start local 2 // java.io.IOException e
         6: .line 480
            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 482
      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 485
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 486
            return
         2: .line 490
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
         3: .line 491
            new java.net.Socket$1
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$1.<init>:(Ljava/net/Socket;)V
         4: .line 490
            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 510
            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 517
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnull 4
         1: .line 518
            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 519
            aload 0 /* this */
            invokevirtual java.net.Socket.checkOldImpl:()V
         3: .line 520
            goto 5
         4: .line 523
      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 525
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnull 7
         6: .line 526
            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 527
      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 539
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 2
         1: .line 540
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
         2: .line 541
      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 558
            aload 0 /* this */
            aload 1 /* endpoint */
            iconst_0
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;I)V
         1: .line 559
            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 579
            aload 1 /* endpoint */
            ifnonnull 2
         1: .line 580
            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 582
      StackMap locals:
      StackMap stack:
            iload 2 /* timeout */
            ifge 4
         3: .line 583
            new java.lang.IllegalArgumentException
            dup
            ldc "connect: timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 585
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 6
         5: .line 586
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 588
      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 589
            new java.net.SocketException
            dup
            ldc "already connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 591
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            instanceof java.net.InetSocketAddress
            ifne 10
         9: .line 592
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 594
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            checkcast java.net.InetSocketAddress
            astore 3 /* epoint */
        start local 3 // java.net.InetSocketAddress epoint
        11: .line 595
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 4 /* addr */
        start local 4 // java.net.InetAddress addr
        12: .line 596
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 5 /* port */
        start local 5 // int port
        13: .line 597
            aload 0 /* this */
            aload 4 /* addr */
            ldc "connect"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 599
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 6 /* security */
        start local 6 // java.lang.SecurityManager security
        15: .line 600
            aload 6 /* security */
            ifnull 19
        16: .line 601
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 18
        17: .line 602
            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 604
      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 606
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 21
        20: .line 607
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
        21: .line 608
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.oldImpl:Z
            ifne 23
        22: .line 609
            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 610
      StackMap locals:
      StackMap stack:
            iload 2 /* timeout */
            ifne 28
        24: .line 611
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 26
        25: .line 612
            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 614
      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 615
            goto 29
        28: .line 616
      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 617
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
        30: .line 622
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        31: .line 623
            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 644
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 645
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 646
      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 647
            new java.net.SocketException
            dup
            ldc "Already bound"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 649
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            ifnull 6
            aload 1 /* bindpoint */
            instanceof java.net.InetSocketAddress
            ifne 6
         5: .line 650
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 651
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            checkcast java.net.InetSocketAddress
            astore 2 /* epoint */
        start local 2 // java.net.InetSocketAddress epoint
         7: .line 652
            aload 2 /* epoint */
            ifnull 9
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 9
         8: .line 653
            new java.net.SocketException
            dup
            ldc "Unresolved address"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 654
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 2 /* epoint */
            ifnonnull 11
        10: .line 655
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            astore 2 /* epoint */
        11: .line 657
      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 658
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 4 /* port */
        start local 4 // int port
        13: .line 659
            aload 0 /* this */
            aload 3 /* addr */
            ldc "bind"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 660
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 5 /* security */
        start local 5 // java.lang.SecurityManager security
        15: .line 661
            aload 5 /* security */
            ifnull 17
        16: .line 662
            aload 5 /* security */
            iload 4 /* port */
            invokevirtual java.lang.SecurityManager.checkListen:(I)V
        17: .line 664
      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 665
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        19: .line 666
            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 669
            aload 1 /* addr */
            ifnonnull 2
         1: .line 670
            return
         2: .line 672
      StackMap locals:
      StackMap stack:
            aload 1 /* addr */
            instanceof java.net.Inet4Address
            ifne 4
            aload 1 /* addr */
            instanceof java.net.Inet6Address
            ifne 4
         3: .line 673
            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 675
      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 681
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
         1: .line 682
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         2: .line 683
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
         3: .line 684
            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 687
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         1: .line 688
            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 691
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
         1: .line 692
            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 695
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
         1: .line 696
            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 709
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 710
            aconst_null
            areturn
         2: .line 712
      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 713
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 715
            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 735
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 736
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            areturn
         2: .line 737
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         3: .line 739
            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 740
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 2 /* sm */
        start local 2 // java.lang.SecurityManager sm
         5: .line 741
            aload 2 /* sm */
            ifnull 7
         6: .line 742
            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
         7: .line 743
      StackMap locals: java.net.InetAddress java.lang.SecurityManager
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.net.InetAddress.isAnyLocalAddress:()Z
            ifeq 14
         8: .line 744
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        end local 2 // java.lang.SecurityManager sm
         9: .line 746
            goto 14
      StackMap locals: java.net.Socket java.net.InetAddress
      StackMap stack: java.lang.SecurityException
        10: pop
        11: .line 747
            invokestatic java.net.InetAddress.getLoopbackAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
            goto 14
        12: .line 748
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
        13: .line 749
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        14: .line 751
      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   15     0  this  Ljava/net/Socket;
            3   15     1    in  Ljava/net/InetAddress;
            5    9     2    sm  Ljava/lang/SecurityManager;
      Exception table:
        from    to  target  type
           3     9      10  Class java.lang.SecurityException
           3     9      12  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 765
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 766
            iconst_0
            ireturn
         2: .line 768
      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 769
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 772
            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 786
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 787
            iconst_m1
            ireturn
         2: .line 789
      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 790
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 793
            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 814
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 815
            aconst_null
            areturn
         2: .line 816
      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 850
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 851
            aconst_null
            areturn
         2: .line 852
      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 873
            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 922
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 923
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 924
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 925
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 926
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isInputShutdown:()Z
            ifeq 6
         5: .line 927
            new java.net.SocketException
            dup
            ldc "Socket input is shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 928
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* is */
        start local 1 // java.io.InputStream is
         7: .line 931
            new java.net.Socket$2
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$2.<init>:(Ljava/net/Socket;)V
         8: .line 930
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.io.InputStream
            astore 1 /* is */
         9: .line 936
            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 937
            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 939
      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 961
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 962
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 963
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 964
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 965
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 966
            new java.net.SocketException
            dup
            ldc "Socket output is shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 967
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* os */
        start local 1 // java.io.OutputStream os
         7: .line 970
            new java.net.Socket$3
            dup
            aload 0 /* this */
            invokespecial java.net.Socket$3.<init>:(Ljava/net/Socket;)V
         8: .line 969
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            checkcast java.io.OutputStream
            astore 1 /* os */
         9: .line 975
            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 976
            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 978
      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 996
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 997
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 998
      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 999
            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 1012
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1013
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1014
      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=3, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // boolean on
        start local 2 // int linger
         0: .line 1033
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1034
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1035
      StackMap locals:
      StackMap stack:
            iload 1 /* on */
            ifne 5
         3: .line 1036
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 128
            iload 1 /* on */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         4: .line 1037
            goto 10
         5: .line 1038
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ifge 7
         6: .line 1039
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid value for SO_LINGER"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 1041
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ldc 65535
            if_icmple 9
         8: .line 1042
            ldc 65535
            istore 2 /* linger */
         9: .line 1043
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 128
            iload 2 /* linger */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
        10: .line 1045
      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 1061
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1062
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1063
      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 1064
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1065
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1067
      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 1082
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.supportsUrgentData:()Z
            ifne 2
         1: .line 1083
            new java.net.SocketException
            dup
            ldc "Urgent data not supported"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1085
      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 1086
            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 1114
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1115
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1116
      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 1117
            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 1131
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1132
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1133
      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=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int timeout
         0: .line 1154
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1155
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1156
      StackMap locals:
      StackMap stack:
            iload 1 /* timeout */
            ifge 4
         3: .line 1157
            new java.lang.IllegalArgumentException
            dup
            ldc "timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4102
            iload 1 /* timeout */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1160
            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 1174
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1175
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1176
      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 1178
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1179
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1181
      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=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int size
         0: .line 1210
            iload 1 /* size */
            ifgt 2
         1: .line 1211
            new java.lang.IllegalArgumentException
            dup
            ldc "negative send size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1213
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1214
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4097
            iload 1 /* size */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1216
            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 1232
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1233
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1234
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1235
            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 1236
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1237
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1239
      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=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int size
         0: .line 1284
            iload 1 /* size */
            ifgt 2
         1: .line 1285
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid receive size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1288
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            sipush 4098
            iload 1 /* size */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1290
            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 1306
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1307
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1308
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1309
            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 1310
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1311
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1313
      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 1326
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1327
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1328
      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 1329
            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 1342
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1343
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1344
      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=3, locals=3, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // int tc
         0: .line 1394
            iload 1 /* tc */
            iflt 1
            iload 1 /* tc */
            sipush 255
            if_icmple 2
         1: .line 1395
      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 1397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1398
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1400
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            iconst_3
            iload 1 /* tc */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.net.SocketImpl.setOption:(ILjava/lang/Object;)V
         5: .line 1401
            goto 9
      StackMap locals:
      StackMap stack: java.net.SocketException
         6: astore 2 /* se */
        start local 2 // java.net.SocketException se
         7: .line 1404
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 9
         8: .line 1405
            aload 2 /* se */
            athrow
        end local 2 // java.net.SocketException se
         9: .line 1407
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int tc
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/net/Socket;
            0   10     1    tc  I
            7    9     2    se  Ljava/net/SocketException;
      Exception table:
        from    to  target  type
           4     5       6  Class java.net.SocketException
    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 1426
            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 1465
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1466
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1467
      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 1468
            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 1481
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1482
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1483
      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 1509
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1510
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         2: .line 1511
            aload 1
            monitorexit
         3: return
         4: .line 1512
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifeq 6
         5: .line 1513
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.close:()V
         6: .line 1514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.closed:Z
         7: .line 1509
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 1516
      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 1538
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1539
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1541
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isInputShutdown:()Z
            ifeq 6
         5: .line 1543
            new java.net.SocketException
            dup
            ldc "Socket input is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownInput:()V
         7: .line 1545
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutIn:Z
         8: .line 1546
            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 1568
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1569
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1571
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1572
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 1573
            new java.net.SocketException
            dup
            ldc "Socket output is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownOutput:()V
         7: .line 1575
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutOut:Z
         8: .line 1576
            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 1585
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifeq 7
         1: .line 1586
            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 1587
            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 1588
            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 1586
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: areturn
         6: .line 1589
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         7: .line 1591
      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 1607
            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 1624
            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 1635
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1636
            aload 0 /* this */
            getfield java.net.Socket.closed:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 1635
      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 1648
            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 1659
            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 1694
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnull 2
         1: .line 1695
            new java.net.SocketException
            dup
            ldc "factory already defined"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1697
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* security */
        start local 1 // java.lang.SecurityManager security
         3: .line 1698
            aload 1 /* security */
            ifnull 5
         4: .line 1699
            aload 1 /* security */
            invokevirtual java.lang.SecurityManager.checkSetFactory:()V
         5: .line 1701
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* fac */
            putstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
         6: .line 1702
            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 1747
            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       

  public <T> java.net.Socket setOption(java.net.SocketOption<T>, T);
    descriptor: (Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/Socket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketOption name
        start local 2 // java.lang.Object value
         0: .line 1778
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            aload 1 /* name */
            aload 2 /* value */
            invokevirtual java.net.SocketImpl.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)V
         1: .line 1779
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.net.SocketOption name
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljava/net/Socket;
            0    2     1   name  Ljava/net/SocketOption<TT;>;
            0    2     2  value  TT;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;TT;)Ljava/net/Socket;
    MethodParameters:
       Name  Flags
      name   
      value  

  public <T> T getOption(java.net.SocketOption<T>);
    descriptor: (Ljava/net/SocketOption;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketOption name
         0: .line 1807
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            aload 1 /* name */
            invokevirtual java.net.SocketImpl.getOption:(Ljava/net/SocketOption;)Ljava/lang/Object;
            areturn
        end local 1 // java.net.SocketOption name
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/Socket;
            0    1     1  name  Ljava/net/SocketOption<TT;>;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;)TT;
    MethodParameters:
      Name  Flags
      name  

  public java.util.Set<java.net.SocketOption<?>> supportedOptions();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 1825
            ldc Ljava/net/Socket;
            dup
            astore 1
            monitorenter
         1: .line 1826
            getstatic java.net.Socket.optionsSet:Z
            ifeq 4
         2: .line 1827
            getstatic java.net.Socket.options:Ljava/util/Set;
            aload 1
            monitorexit
         3: areturn
         4: .line 1830
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            astore 2 /* impl */
        start local 2 // java.net.SocketImpl impl
         5: .line 1831
            aload 2 /* impl */
            invokevirtual java.net.SocketImpl.supportedOptions:()Ljava/util/Set;
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            putstatic java.net.Socket.options:Ljava/util/Set;
        end local 2 // java.net.SocketImpl impl
         6: .line 1832
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         7: pop
         8: .line 1833
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            putstatic java.net.Socket.options:Ljava/util/Set;
         9: .line 1835
      StackMap locals:
      StackMap stack:
            iconst_1
            putstatic java.net.Socket.optionsSet:Z
        10: .line 1836
            getstatic java.net.Socket.options:Ljava/util/Set;
            aload 1
            monitorexit
        11: areturn
        12: .line 1825
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        13: athrow
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Ljava/net/Socket;
            5    6     2  impl  Ljava/net/SocketImpl;
      Exception table:
        from    to  target  type
           4     6       7  Class java.io.IOException
           1     3      12  any
           4    11      12  any
          12    13      12  any
    Signature: ()Ljava/util/Set<Ljava/net/SocketOption<*>;>;
}
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