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 volatile java.io.InputStream in;
    descriptor: Ljava/io/InputStream;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=1, args_size=0
         0: .line 123
            invokestatic java.lang.invoke.MethodHandles.lookup:()Ljava/lang/invoke/MethodHandles$Lookup;
            astore 0 /* l */
        start local 0 // java.lang.invoke.MethodHandles$Lookup l
         1: .line 124
            aload 0 /* l */
            ldc Ljava/net/Socket;
            ldc "in"
            ldc Ljava/io/InputStream;
            invokevirtual java.lang.invoke.MethodHandles$Lookup.findVarHandle:(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;
            putstatic java.net.Socket.IN:Ljava/lang/invoke/VarHandle;
         2: .line 125
            aload 0 /* l */
            ldc Ljava/net/Socket;
            ldc "out"
            ldc Ljava/io/OutputStream;
            invokevirtual java.lang.invoke.MethodHandles$Lookup.findVarHandle:(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;
            putstatic java.net.Socket.OUT:Ljava/lang/invoke/VarHandle;
        end local 0 // java.lang.invoke.MethodHandles$Lookup l
         3: .line 126
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 0 /* e */
        start local 0 // java.lang.Exception e
         5: .line 127
            new java.lang.InternalError
            dup
            aload 0 /* e */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 0 // java.lang.Exception e
         6: .line 1721
      StackMap locals:
      StackMap stack:
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    3     0     l  Ljava/lang/invoke/MethodHandles$Lookup;
            5    6     0     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception

  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 142
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 102
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 103
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 104
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 105
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 106
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 107
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 108
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 143
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
         9: .line 144
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/net/Socket;

  public void <init>(java.net.Proxy);
    descriptor: (Ljava/net/Proxy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.Proxy proxy
         0: .line 174
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 102
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 103
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 104
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 105
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 106
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 107
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 108
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 176
            aload 1 /* proxy */
            ifnonnull 10
         9: .line 177
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 179
      StackMap locals: java.net.Socket java.net.Proxy
      StackMap stack:
            aload 1 /* proxy */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 11
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            goto 12
        11: .line 180
      StackMap locals:
      StackMap stack:
            aload 1 /* proxy */
            invokestatic sun.net.ApplicationProxy.create:(Ljava/net/Proxy;)Lsun/net/ApplicationProxy;
        12: .line 179
      StackMap locals:
      StackMap stack: java.net.Proxy
            astore 2 /* p */
        start local 2 // java.net.Proxy p
        13: .line 181
            aload 2 /* p */
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            astore 3 /* type */
        start local 3 // java.net.Proxy$Type type
        14: .line 182
            aload 3 /* type */
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpeq 15
            aload 3 /* type */
            getstatic java.net.Proxy$Type.HTTP:Ljava/net/Proxy$Type;
            if_acmpne 32
        15: .line 183
      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
        16: .line 184
            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
        17: .line 185
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            ifnull 19
        18: .line 186
            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
        19: .line 188
      StackMap locals: java.lang.SecurityManager java.net.InetSocketAddress
      StackMap stack:
            aload 4 /* security */
            ifnull 27
        20: .line 189
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 22
        21: .line 190
            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 */
        22: .line 191
      StackMap locals:
      StackMap stack:
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 24
        23: .line 192
            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 27
        24: .line 194
      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;
        25: .line 195
            aload 5 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
        26: .line 194
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        27: .line 199
      StackMap locals:
      StackMap stack:
            iconst_0
            invokestatic java.net.SocketImpl.createPlatformSocketImpl:(Z)Ljava/net/SocketImpl;
            astore 6 /* delegate */
        start local 6 // java.net.SocketImpl delegate
        28: .line 200
            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 */
            aload 6 /* delegate */
            invokespecial java.net.SocksSocketImpl.<init>:(Ljava/net/Proxy;Ljava/net/SocketImpl;)V
            goto 30
        29: .line 201
      StackMap locals: java.net.Socket java.net.Proxy java.net.Proxy java.net.Proxy$Type java.lang.SecurityManager java.net.InetSocketAddress java.net.SocketImpl
      StackMap stack: java.net.Socket
            new java.net.HttpConnectSocketImpl
            dup
            aload 2 /* p */
            aload 6 /* delegate */
            aload 0 /* this */
            invokespecial java.net.HttpConnectSocketImpl.<init>:(Ljava/net/Proxy;Ljava/net/SocketImpl;Ljava/net/Socket;)V
        30: .line 200
      StackMap locals: java.net.Socket java.net.Proxy java.net.Proxy java.net.Proxy$Type java.lang.SecurityManager java.net.InetSocketAddress java.net.SocketImpl
      StackMap stack: java.net.Socket java.net.DelegatingSocketImpl
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        end local 6 // java.net.SocketImpl delegate
        end local 5 // java.net.InetSocketAddress epoint
        end local 4 // java.lang.SecurityManager security
        31: .line 202
            goto 40
        32: .line 203
      StackMap locals:
      StackMap stack:
            aload 2 /* p */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 39
        33: .line 205
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            astore 4 /* factory */
        start local 4 // java.net.SocketImplFactory factory
        34: .line 206
            aload 4 /* factory */
            ifnonnull 37
        35: .line 207
            aload 0 /* this */
            iconst_0
            invokestatic java.net.SocketImpl.createPlatformSocketImpl:(Z)Ljava/net/SocketImpl;
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        36: .line 208
            goto 40
        37: .line 209
      StackMap locals: java.net.SocketImplFactory
      StackMap stack:
            aload 0 /* this */
            aload 4 /* factory */
            invokeinterface java.net.SocketImplFactory.createSocketImpl:()Ljava/net/SocketImpl;
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        end local 4 // java.net.SocketImplFactory factory
        38: .line 211
            goto 40
        39: .line 212
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid Proxy"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        40: .line 214
      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   41     0      this  Ljava/net/Socket;
            0   41     1     proxy  Ljava/net/Proxy;
           13   41     2         p  Ljava/net/Proxy;
           14   41     3      type  Ljava/net/Proxy$Type;
           16   31     4  security  Ljava/lang/SecurityManager;
           17   31     5    epoint  Ljava/net/InetSocketAddress;
           28   31     6  delegate  Ljava/net/SocketImpl;
           34   38     4   factory  Ljava/net/SocketImplFactory;
    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 231
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 102
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 103
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 104
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 105
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 106
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 107
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 108
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 232
            aload 1 /* impl */
            invokestatic java.net.Socket.checkPermission:(Ljava/net/SocketImpl;)Ljava/lang/Void;
            pop
         9: .line 233
            aload 0 /* this */
            aload 1 /* impl */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        10: .line 234
            return
        end local 1 // java.net.SocketImpl impl
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/net/Socket;
            0   11     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 237
            aload 0 /* impl */
            ifnonnull 2
         1: .line 238
            aconst_null
            areturn
         2: .line 240
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* sm */
        start local 1 // java.lang.SecurityManager sm
         3: .line 241
            aload 1 /* sm */
            ifnull 5
         4: .line 242
            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 244
      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 285
            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 286
      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 287
      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 288
            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 317
            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 318
      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 319
            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 359
            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 360
      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 361
      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 362
            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 401
            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 402
      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 403
            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 447
            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 448
      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 449
      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 450
            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 489
            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 490
      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 491
            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 493
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 102
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.created:Z
         2: .line 103
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.bound:Z
         3: .line 104
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.connected:Z
         4: .line 105
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.closed:Z
         5: .line 106
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.Socket.closeLock:Ljava/lang/Object;
         6: .line 107
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutIn:Z
         7: .line 108
            aload 0 /* this */
            iconst_0
            putfield java.net.Socket.shutOut:Z
         8: .line 495
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
         9: .line 498
            aload 1 /* address */
            ifnonnull 11
        10: .line 499
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
        11: .line 502
      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
        12: .line 503
            aload 2 /* localAddr */
            ifnull 14
        13: .line 504
            aload 0 /* this */
            aload 2 /* localAddr */
            invokevirtual java.net.Socket.bind:(Ljava/net/SocketAddress;)V
        14: .line 505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;)V
        15: .line 506
            goto 22
      StackMap locals:
      StackMap stack: java.lang.Exception
        16: astore 4 /* e */
        start local 4 // java.lang.Exception e
        17: .line 508
            aload 0 /* this */
            invokevirtual java.net.Socket.close:()V
        18: .line 509
            goto 21
      StackMap locals: java.net.Socket java.net.SocketAddress java.net.SocketAddress int java.lang.Exception
      StackMap stack: java.io.IOException
        19: astore 5 /* ce */
        start local 5 // java.io.IOException ce
        20: .line 510
            aload 4 /* e */
            aload 5 /* ce */
            invokevirtual java.lang.Exception.addSuppressed:(Ljava/lang/Throwable;)V
        end local 5 // java.io.IOException ce
        21: .line 512
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            athrow
        end local 4 // java.lang.Exception e
        22: .line 514
      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   23     0       this  Ljava/net/Socket;
            0   23     1    address  Ljava/net/SocketAddress;
            0   23     2  localAddr  Ljava/net/SocketAddress;
            0   23     3     stream  Z
           17   22     4          e  Ljava/lang/Exception;
           20   21     5         ce  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          11    15      16  Class java.io.IOException
          11    15      16  Class java.lang.IllegalArgumentException
          11    15      16  Class java.lang.SecurityException
          17    18      19  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 525
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 526
            aload 0 /* this */
            invokevirtual java.net.Socket.setImpl:()V
         2: .line 528
      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 529
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         4: .line 530
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         5: astore 2 /* e */
        start local 2 // java.io.IOException e
         6: .line 531
            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 533
      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  

  void setImpl(java.net.SocketImpl);
    descriptor: (Ljava/net/SocketImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketImpl si
         0: .line 536
            aload 0 /* this */
            aload 1 /* si */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
         1: .line 537
            return
        end local 1 // java.net.SocketImpl si
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/Socket;
            0    2     1    si  Ljava/net/SocketImpl;
    MethodParameters:
      Name  Flags
      si    

  void setImpl();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // java.net.Socket this
         0: .line 544
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            astore 1 /* factory */
        start local 1 // java.net.SocketImplFactory factory
         1: .line 545
            aload 1 /* factory */
            ifnull 4
         2: .line 546
            aload 0 /* this */
            aload 1 /* factory */
            invokeinterface java.net.SocketImplFactory.createSocketImpl:()Ljava/net/SocketImpl;
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
         3: .line 547
            goto 6
         4: .line 549
      StackMap locals: java.net.SocketImplFactory
      StackMap stack:
            iconst_0
            invokestatic java.net.SocketImpl.createPlatformSocketImpl:(Z)Ljava/net/SocketImpl;
            astore 2 /* delegate */
        start local 2 // java.net.SocketImpl delegate
         5: .line 550
            aload 0 /* this */
            new java.net.SocksSocketImpl
            dup
            aload 2 /* delegate */
            invokespecial java.net.SocksSocketImpl.<init>:(Ljava/net/SocketImpl;)V
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        end local 2 // java.net.SocketImpl delegate
         6: .line 552
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.net.SocketImplFactory factory
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljava/net/Socket;
            1    7     1   factory  Ljava/net/SocketImplFactory;
            5    6     2  delegate  Ljava/net/SocketImpl;

  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 563
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 2
         1: .line 564
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
         2: .line 565
      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 581
            aload 0 /* this */
            aload 1 /* endpoint */
            iconst_0
            invokevirtual java.net.Socket.connect:(Ljava/net/SocketAddress;I)V
         1: .line 582
            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 602
            aload 1 /* endpoint */
            ifnonnull 2
         1: .line 603
            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 605
      StackMap locals:
      StackMap stack:
            iload 2 /* timeout */
            ifge 4
         3: .line 606
            new java.lang.IllegalArgumentException
            dup
            ldc "connect: timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 608
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 6
         5: .line 609
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifeq 8
         7: .line 612
            new java.net.SocketException
            dup
            ldc "already connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 614
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            instanceof java.net.InetSocketAddress
            ifne 10
         9: .line 615
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 617
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            checkcast java.net.InetSocketAddress
            astore 3 /* epoint */
        start local 3 // java.net.InetSocketAddress epoint
        11: .line 618
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 4 /* addr */
        start local 4 // java.net.InetAddress addr
        12: .line 619
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 5 /* port */
        start local 5 // int port
        13: .line 620
            aload 0 /* this */
            aload 4 /* addr */
            ldc "connect"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 622
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 6 /* security */
        start local 6 // java.lang.SecurityManager security
        15: .line 623
            aload 6 /* security */
            ifnull 19
        16: .line 624
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 18
        17: .line 625
            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 627
      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 629
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifne 21
        20: .line 630
            aload 0 /* this */
            iconst_1
            invokevirtual java.net.Socket.createImpl:(Z)V
        21: .line 631
      StackMap locals:
      StackMap stack:
            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
        22: .line 632
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
        23: .line 637
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        24: .line 638
            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   25     0      this  Ljava/net/Socket;
            0   25     1  endpoint  Ljava/net/SocketAddress;
            0   25     2   timeout  I
           11   25     3    epoint  Ljava/net/InetSocketAddress;
           12   25     4      addr  Ljava/net/InetAddress;
           13   25     5      port  I
           15   25     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 659
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 660
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 661
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifeq 4
         3: .line 662
            new java.net.SocketException
            dup
            ldc "Already bound"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 664
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            ifnull 6
            aload 1 /* bindpoint */
            instanceof java.net.InetSocketAddress
            ifne 6
         5: .line 665
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 666
      StackMap locals:
      StackMap stack:
            aload 1 /* bindpoint */
            checkcast java.net.InetSocketAddress
            astore 2 /* epoint */
        start local 2 // java.net.InetSocketAddress epoint
         7: .line 667
            aload 2 /* epoint */
            ifnull 9
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 9
         8: .line 668
            new java.net.SocketException
            dup
            ldc "Unresolved address"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 669
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            aload 2 /* epoint */
            ifnonnull 11
        10: .line 670
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            astore 2 /* epoint */
        11: .line 672
      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 673
            aload 2 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            istore 4 /* port */
        start local 4 // int port
        13: .line 674
            aload 0 /* this */
            aload 3 /* addr */
            ldc "bind"
            invokevirtual java.net.Socket.checkAddress:(Ljava/net/InetAddress;Ljava/lang/String;)V
        14: .line 675
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 5 /* security */
        start local 5 // java.lang.SecurityManager security
        15: .line 676
            aload 5 /* security */
            ifnull 17
        16: .line 677
            aload 5 /* security */
            iload 4 /* port */
            invokevirtual java.lang.SecurityManager.checkListen:(I)V
        17: .line 679
      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 680
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
        19: .line 681
            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 684
            aload 1 /* addr */
            ifnonnull 2
         1: .line 685
            return
         2: .line 687
      StackMap locals:
      StackMap stack:
            aload 1 /* addr */
            instanceof java.net.Inet4Address
            ifne 4
            aload 1 /* addr */
            instanceof java.net.Inet6Address
            ifne 4
         3: .line 688
            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 690
      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 696
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.connected:Z
         1: .line 697
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.created:Z
         2: .line 698
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.bound:Z
         3: .line 699
            return
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     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 712
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 713
            aconst_null
            areturn
         2: .line 715
      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 716
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 718
            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 738
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 739
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            areturn
         2: .line 740
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         3: .line 742
            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 743
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 2 /* sm */
        start local 2 // java.lang.SecurityManager sm
         5: .line 744
            aload 2 /* sm */
            ifnull 7
         6: .line 745
            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 746
      StackMap locals: java.net.InetAddress java.lang.SecurityManager
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.net.InetAddress.isAnyLocalAddress:()Z
            ifeq 14
         8: .line 747
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        end local 2 // java.lang.SecurityManager sm
         9: .line 749
            goto 14
      StackMap locals: java.net.Socket java.net.InetAddress
      StackMap stack: java.lang.SecurityException
        10: pop
        11: .line 750
            invokestatic java.net.InetAddress.getLoopbackAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
            goto 14
        12: .line 751
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
        13: .line 752
            invokestatic java.net.InetAddress.anyLocalAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        14: .line 754
      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 768
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 769
            iconst_0
            ireturn
         2: .line 771
      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 772
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 775
            iconst_m1
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/Socket;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.SocketException

  public 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 789
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 790
            iconst_m1
            ireturn
         2: .line 792
      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 793
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 796
            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 816
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 2
         1: .line 817
            aconst_null
            areturn
         2: .line 818
      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 852
            aload 0 /* this */
            invokevirtual java.net.Socket.isBound:()Z
            ifne 2
         1: .line 853
            aconst_null
            areturn
         2: .line 854
      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 874
            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=4, locals=2, 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:
            aload 0 /* this */
            getfield java.net.Socket.in:Ljava/io/InputStream;
            astore 1 /* in */
        start local 1 // java.io.InputStream in
         7: .line 929
            aload 1 /* in */
            ifnonnull 11
         8: .line 931
            new java.net.Socket$SocketInputStream
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getInputStream:()Ljava/io/InputStream;
            invokespecial java.net.Socket$SocketInputStream.<init>:(Ljava/net/Socket;Ljava/io/InputStream;)V
            astore 1 /* in */
         9: .line 932
            getstatic java.net.Socket.IN:Ljava/lang/invoke/VarHandle;
            aload 0 /* this */
            aconst_null
            aload 1 /* in */
            invokevirtual java.lang.invoke.VarHandle.compareAndSet:(Ljava/net/Socket;Ljava/lang/Void;Ljava/io/InputStream;)Z
            ifne 11
        10: .line 933
            aload 0 /* this */
            getfield java.net.Socket.in:Ljava/io/InputStream;
            astore 1 /* in */
        11: .line 936
      StackMap locals: java.io.InputStream
      StackMap stack:
            aload 1 /* in */
            areturn
        end local 1 // java.io.InputStream in
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/net/Socket;
            7   12     1    in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException

  public java.io.OutputStream getOutputStream();
    descriptor: ()Ljava/io/OutputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.net.Socket this
         0: .line 993
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 994
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 995
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 996
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 997
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 998
            new java.net.SocketException
            dup
            ldc "Socket output is shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 999
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.out:Ljava/io/OutputStream;
            astore 1 /* out */
        start local 1 // java.io.OutputStream out
         7: .line 1000
            aload 1 /* out */
            ifnonnull 11
         8: .line 1002
            new java.net.Socket$SocketOutputStream
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getOutputStream:()Ljava/io/OutputStream;
            invokespecial java.net.Socket$SocketOutputStream.<init>:(Ljava/net/Socket;Ljava/io/OutputStream;)V
            astore 1 /* out */
         9: .line 1003
            getstatic java.net.Socket.OUT:Ljava/lang/invoke/VarHandle;
            aload 0 /* this */
            aconst_null
            aload 1 /* out */
            invokevirtual java.lang.invoke.VarHandle.compareAndSet:(Ljava/net/Socket;Ljava/lang/Void;Ljava/io/OutputStream;)Z
            ifne 11
        10: .line 1004
            aload 0 /* this */
            getfield java.net.Socket.out:Ljava/io/OutputStream;
            astore 1 /* out */
        11: .line 1007
      StackMap locals: java.io.OutputStream
      StackMap stack:
            aload 1 /* out */
            areturn
        end local 1 // java.io.OutputStream out
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/net/Socket;
            7   12     1   out  Ljava/io/OutputStream;
    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 1055
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1056
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1057
      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 1058
            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 1071
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1072
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1073
      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 1092
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1093
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1094
      StackMap locals:
      StackMap stack:
            iload 1 /* on */
            ifne 5
         3: .line 1095
            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 1096
            goto 10
         5: .line 1097
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ifge 7
         6: .line 1098
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid value for SO_LINGER"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 1100
      StackMap locals:
      StackMap stack:
            iload 2 /* linger */
            ldc 65535
            if_icmple 9
         8: .line 1101
            ldc 65535
            istore 2 /* linger */
         9: .line 1102
      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 1104
      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 1120
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1121
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1122
      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 1123
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1124
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1126
      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 1141
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.supportsUrgentData:()Z
            ifne 2
         1: .line 1142
            new java.net.SocketException
            dup
            ldc "Urgent data not supported"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1144
      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 1145
            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 1173
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1174
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1175
      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 1176
            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 1190
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1191
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1192
      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 1213
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1214
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1215
      StackMap locals:
      StackMap stack:
            iload 1 /* timeout */
            ifge 4
         3: .line 1216
            new java.lang.IllegalArgumentException
            dup
            ldc "timeout can't be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1218
      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 1219
            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 1233
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1234
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1235
      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 1237
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 1238
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 1240
      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 1269
            iload 1 /* size */
            ifgt 2
         1: .line 1270
            new java.lang.IllegalArgumentException
            dup
            ldc "negative send size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1273
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1274
      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 1275
            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 1291
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1292
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1293
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1294
            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 1295
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1296
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1298
      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 1343
            iload 1 /* size */
            ifgt 2
         1: .line 1344
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid receive size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1347
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1348
      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 1349
            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 1365
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1366
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1367
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 1368
            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 1369
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 1370
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 1372
      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 1385
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1386
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1387
      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 1388
            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 1401
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1402
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1403
      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 1453
            iload 1 /* tc */
            iflt 1
            iload 1 /* tc */
            sipush 255
            if_icmple 2
         1: .line 1454
      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 1456
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         3: .line 1457
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1459
      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 1460
            goto 9
      StackMap locals:
      StackMap stack: java.net.SocketException
         6: astore 2 /* se */
        start local 2 // java.net.SocketException se
         7: .line 1463
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 9
         8: .line 1464
            aload 2 /* se */
            athrow
        end local 2 // java.net.SocketException se
         9: .line 1466
      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 1485
            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 1524
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1525
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1526
      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 1527
            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 1540
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1541
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1542
      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 1567
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1568
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 4
         2: .line 1569
            aload 1
            monitorexit
         3: return
         4: .line 1570
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.created:Z
            ifeq 6
         5: .line 1571
            aload 0 /* this */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.close:()V
         6: .line 1572
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.closed:Z
         7: .line 1567
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 1574
      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 1596
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1597
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1599
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1600
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isInputShutdown:()Z
            ifeq 6
         5: .line 1601
            new java.net.SocketException
            dup
            ldc "Socket input is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1602
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownInput:()V
         7: .line 1603
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutIn:Z
         8: .line 1604
            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 1626
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 2
         1: .line 1627
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1628
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifne 4
         3: .line 1629
            new java.net.SocketException
            dup
            ldc "Socket is not connected"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1630
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.isOutputShutdown:()Z
            ifeq 6
         5: .line 1631
            new java.net.SocketException
            dup
            ldc "Socket output is already shutdown"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.shutdownOutput:()V
         7: .line 1633
            aload 0 /* this */
            iconst_1
            putfield java.net.Socket.shutOut:Z
         8: .line 1634
            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 1643
            aload 0 /* this */
            invokevirtual java.net.Socket.isConnected:()Z
            ifeq 7
         1: .line 1644
            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 1645
            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 1646
            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 1644
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: areturn
         6: .line 1647
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         7: .line 1649
      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 1664
            aload 0 /* this */
            getfield java.net.Socket.connected:Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     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 1680
            aload 0 /* this */
            getfield java.net.Socket.bound:Z
            ireturn
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     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 1691
            aload 0 /* this */
            getfield java.net.Socket.closeLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 1692
            aload 0 /* this */
            getfield java.net.Socket.closed:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 1691
      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 1704
            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 1715
            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;

  static java.net.SocketImplFactory socketImplFactory();
    descriptor: ()Ljava/net/SocketImplFactory;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 1724
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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 1764
            getstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
            ifnull 2
         1: .line 1765
            new java.net.SocketException
            dup
            ldc "factory already defined"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1767
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* security */
        start local 1 // java.lang.SecurityManager security
         3: .line 1768
            aload 1 /* security */
            ifnull 5
         4: .line 1769
            aload 1 /* security */
            invokevirtual java.lang.SecurityManager.checkSetFactory:()V
         5: .line 1771
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* fac */
            putstatic java.net.Socket.factory:Ljava/net/SocketImplFactory;
         6: .line 1772
            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
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated(since = "17")
    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 1817
            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 1848
            aload 1 /* name */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 1849
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 3
         2: .line 1850
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1851
      StackMap locals:
      StackMap stack:
            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
         4: .line 1852
            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    5     0   this  Ljava/net/Socket;
            0    5     1   name  Ljava/net/SocketOption<TT;>;
            0    5     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=3, locals=2, args_size=2
        start local 0 // java.net.Socket this
        start local 1 // java.net.SocketOption name
         0: .line 1880
            aload 1 /* name */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 1881
            aload 0 /* this */
            invokevirtual java.net.Socket.isClosed:()Z
            ifeq 3
         2: .line 1882
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1883
      StackMap locals:
      StackMap stack:
            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    4     0  this  Ljava/net/Socket;
            0    4     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 1901
            aload 0 /* this */
            getfield java.net.Socket.options:Ljava/util/Set;
            astore 1 /* so */
        start local 1 // java.util.Set so
         1: .line 1902
            aload 1 /* so */
            ifnull 3
         2: .line 1903
            aload 1 /* so */
            areturn
         3: .line 1906
      StackMap locals: java.util.Set
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.Socket.getImpl:()Ljava/net/SocketImpl;
            astore 2 /* impl */
        start local 2 // java.net.SocketImpl impl
         4: .line 1907
            aload 0 /* this */
            aload 2 /* impl */
            invokevirtual java.net.SocketImpl.supportedOptions:()Ljava/util/Set;
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            putfield java.net.Socket.options:Ljava/util/Set;
        end local 2 // java.net.SocketImpl impl
         5: .line 1908
            goto 8
      StackMap locals:
      StackMap stack: java.io.IOException
         6: pop
         7: .line 1909
            aload 0 /* this */
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            putfield java.net.Socket.options:Ljava/util/Set;
         8: .line 1911
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.Socket.options:Ljava/util/Set;
            areturn
        end local 1 // java.util.Set so
        end local 0 // java.net.Socket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/Socket;
            1    9     1    so  Ljava/util/Set<Ljava/net/SocketOption<*>;>;
            4    5     2  impl  Ljava/net/SocketImpl;
      Exception table:
        from    to  target  type
           3     5       6  Class java.io.IOException
    Signature: ()Ljava/util/Set<Ljava/net/SocketOption<*>;>;
}
SourceFile: "Socket.java"
NestMembers:
  java.net.Socket$SocketInputStream  java.net.Socket$SocketOutputStream
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public final Type = java.net.Proxy$Type of java.net.Proxy
  private SocketInputStream = java.net.Socket$SocketInputStream of java.net.Socket
  private SocketOutputStream = java.net.Socket$SocketOutputStream of java.net.Socket