public class java.net.ServerSocket implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.net.ServerSocket
  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 closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  private java.net.SocketImpl impl;
    descriptor: Ljava/net/SocketImpl;
    flags: (0x0002) ACC_PRIVATE

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

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

  private 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=2, locals=0, args_size=0
         0: .line 781
            aconst_null
            putstatic java.net.ServerSocket.factory:Ljava/net/SocketImplFactory;
         1: .line 1026
            new java.net.ServerSocket$1
            dup
            invokespecial java.net.ServerSocket$1.<init>:()V
         2: .line 1025
            invokestatic jdk.internal.access.SharedSecrets.setJavaNetSocketAccess:(Ljdk/internal/access/JavaNetSocketAccess;)V
         3: .line 1045
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.ServerSocket this
        start local 1 // java.net.SocketImpl impl
         0: .line 87
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.created:Z
         2: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.bound:Z
         3: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.closed:Z
         4: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.ServerSocket.closeLock:Ljava/lang/Object;
         5: .line 76
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.oldImpl:Z
         6: .line 88
            aload 0 /* this */
            aload 1 /* impl */
            putfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
         7: .line 89
            aload 1 /* impl */
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setServerSocket:(Ljava/net/ServerSocket;)V
         8: .line 90
            return
        end local 1 // java.net.SocketImpl impl
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/ServerSocket;
            0    9     1  impl  Ljava/net/SocketImpl;
    MethodParameters:
      Name  Flags
      impl  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 98
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.created:Z
         2: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.bound:Z
         3: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.closed:Z
         4: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.ServerSocket.closeLock:Ljava/lang/Object;
         5: .line 76
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.oldImpl:Z
         6: .line 99
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.setImpl:()V
         7: .line 100
            return
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/ServerSocket;
    Exceptions:
      throws java.io.IOException

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.net.ServerSocket this
        start local 1 // int port
         0: .line 140
            aload 0 /* this */
            iload 1 /* port */
            bipush 50
            aconst_null
            invokespecial java.net.ServerSocket.<init>:(IILjava/net/InetAddress;)V
         1: .line 141
            return
        end local 1 // int port
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/net/ServerSocket;
            0    2     1  port  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      port  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.net.ServerSocket this
        start local 1 // int port
        start local 2 // int backlog
         0: .line 192
            aload 0 /* this */
            iload 1 /* port */
            iload 2 /* backlog */
            aconst_null
            invokespecial java.net.ServerSocket.<init>:(IILjava/net/InetAddress;)V
         1: .line 193
            return
        end local 2 // int backlog
        end local 1 // int port
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Ljava/net/ServerSocket;
            0    2     1     port  I
            0    2     2  backlog  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      port     
      backlog  

  public void <init>(int, int, java.net.InetAddress);
    descriptor: (IILjava/net/InetAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.net.ServerSocket this
        start local 1 // int port
        start local 2 // int backlog
        start local 3 // java.net.InetAddress bindAddr
         0: .line 240
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.created:Z
         2: .line 64
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.bound:Z
         3: .line 65
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.closed:Z
         4: .line 66
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield java.net.ServerSocket.closeLock:Ljava/lang/Object;
         5: .line 76
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.oldImpl:Z
         6: .line 241
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.setImpl:()V
         7: .line 242
            iload 1 /* port */
            iflt 8
            iload 1 /* port */
            ldc 65535
            if_icmple 11
         8: .line 243
      StackMap locals: java.net.ServerSocket int int java.net.InetAddress
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
         9: .line 244
            new java.lang.StringBuilder
            dup
            ldc "Port value out of range: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* port */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 243
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 245
      StackMap locals:
      StackMap stack:
            iload 2 /* backlog */
            iconst_1
            if_icmpge 13
        12: .line 246
            bipush 50
            istore 2 /* backlog */
        13: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.net.InetSocketAddress
            dup
            aload 3 /* bindAddr */
            iload 1 /* port */
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            iload 2 /* backlog */
            invokevirtual java.net.ServerSocket.bind:(Ljava/net/SocketAddress;I)V
        14: .line 249
            goto 21
      StackMap locals:
      StackMap stack: java.lang.SecurityException
        15: astore 4 /* e */
        start local 4 // java.lang.SecurityException e
        16: .line 250
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.close:()V
        17: .line 251
            aload 4 /* e */
            athrow
        end local 4 // java.lang.SecurityException e
        18: .line 252
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 4 /* e */
        start local 4 // java.io.IOException e
        19: .line 253
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.close:()V
        20: .line 254
            aload 4 /* e */
            athrow
        end local 4 // java.io.IOException e
        21: .line 256
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.net.InetAddress bindAddr
        end local 2 // int backlog
        end local 1 // int port
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Ljava/net/ServerSocket;
            0   22     1      port  I
            0   22     2   backlog  I
            0   22     3  bindAddr  Ljava/net/InetAddress;
           16   18     4         e  Ljava/lang/SecurityException;
           19   21     4         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          13    14      15  Class java.lang.SecurityException
          13    14      18  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      port      
      backlog   
      bindAddr  

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

  private void checkOldImpl();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 273
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 274
            return
         2: .line 279
      StackMap locals:
      StackMap stack:
            new java.net.ServerSocket$2
            dup
            aload 0 /* this */
            invokespecial java.net.ServerSocket$2.<init>:(Ljava/net/ServerSocket;)V
         3: .line 278
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;
            pop
         4: .line 287
            goto 7
      StackMap locals:
      StackMap stack: java.security.PrivilegedActionException
         5: pop
         6: .line 288
            aload 0 /* this */
            iconst_1
            putfield java.net.ServerSocket.oldImpl:Z
         7: .line 290
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/ServerSocket;
      Exception table:
        from    to  target  type
           2     4       5  Class java.security.PrivilegedActionException

  private void setImpl();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 293
            getstatic java.net.ServerSocket.factory:Ljava/net/SocketImplFactory;
            ifnull 4
         1: .line 294
            aload 0 /* this */
            getstatic java.net.ServerSocket.factory:Ljava/net/SocketImplFactory;
            invokeinterface java.net.SocketImplFactory.createSocketImpl:()Ljava/net/SocketImpl;
            putfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
         2: .line 295
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.checkOldImpl:()V
         3: .line 296
            goto 5
         4: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.net.SocksSocketImpl
            dup
            invokespecial java.net.SocksSocketImpl.<init>:()V
            putfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
         5: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            ifnull 7
         6: .line 302
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            aload 0 /* this */
            invokevirtual java.net.SocketImpl.setServerSocket:(Ljava/net/ServerSocket;)V
         7: .line 303
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/ServerSocket;

  void createImpl();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 312
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            ifnonnull 2
         1: .line 313
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.setImpl:()V
         2: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            iconst_1
            invokevirtual java.net.SocketImpl.create:(Z)V
         3: .line 316
            aload 0 /* this */
            iconst_1
            putfield java.net.ServerSocket.created:Z
         4: .line 317
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         5: astore 1 /* e */
        start local 1 // java.io.IOException e
         6: .line 318
            new java.net.SocketException
            dup
            aload 1 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.io.IOException e
         7: .line 320
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/net/ServerSocket;
            6    7     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     4       5  Class java.io.IOException
    Exceptions:
      throws java.net.SocketException

  public void bind(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.ServerSocket this
        start local 1 // java.net.SocketAddress endpoint
         0: .line 340
            aload 0 /* this */
            aload 1 /* endpoint */
            bipush 50
            invokevirtual java.net.ServerSocket.bind:(Ljava/net/SocketAddress;I)V
         1: .line 341
            return
        end local 1 // java.net.SocketAddress endpoint
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/net/ServerSocket;
            0    2     1  endpoint  Ljava/net/SocketAddress;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      endpoint  

  public void bind(java.net.SocketAddress, int);
    descriptor: (Ljava/net/SocketAddress;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // java.net.ServerSocket this
        start local 1 // java.net.SocketAddress endpoint
        start local 2 // int backlog
         0: .line 369
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 370
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.ServerSocket.oldImpl:Z
            ifne 4
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifeq 4
         3: .line 372
            new java.net.SocketException
            dup
            ldc "Already bound"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 373
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            ifnonnull 6
         5: .line 374
            new java.net.InetSocketAddress
            dup
            iconst_0
            invokespecial java.net.InetSocketAddress.<init>:(I)V
            astore 1 /* endpoint */
         6: .line 375
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            instanceof java.net.InetSocketAddress
            ifne 8
         7: .line 376
            new java.lang.IllegalArgumentException
            dup
            ldc "Unsupported address type"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 377
      StackMap locals:
      StackMap stack:
            aload 1 /* endpoint */
            checkcast java.net.InetSocketAddress
            astore 3 /* epoint */
        start local 3 // java.net.InetSocketAddress epoint
         9: .line 378
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 11
        10: .line 379
            new java.net.SocketException
            dup
            ldc "Unresolved address"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 380
      StackMap locals: java.net.InetSocketAddress
      StackMap stack:
            iload 2 /* backlog */
            iconst_1
            if_icmpge 13
        12: .line 381
            bipush 50
            istore 2 /* backlog */
        13: .line 383
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 4 /* security */
        start local 4 // java.lang.SecurityManager security
        14: .line 384
            aload 4 /* security */
            ifnull 16
        15: .line 385
            aload 4 /* security */
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokevirtual java.lang.SecurityManager.checkListen:(I)V
        16: .line 386
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            aload 3 /* epoint */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokevirtual java.net.SocketImpl.bind:(Ljava/net/InetAddress;I)V
        17: .line 387
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            iload 2 /* backlog */
            invokevirtual java.net.SocketImpl.listen:(I)V
        18: .line 388
            aload 0 /* this */
            iconst_1
            putfield java.net.ServerSocket.bound:Z
        end local 4 // java.lang.SecurityManager security
        19: .line 389
            goto 26
      StackMap locals: java.net.ServerSocket java.net.SocketAddress int java.net.InetSocketAddress
      StackMap stack: java.lang.SecurityException
        20: astore 4 /* e */
        start local 4 // java.lang.SecurityException e
        21: .line 390
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.bound:Z
        22: .line 391
            aload 4 /* e */
            athrow
        end local 4 // java.lang.SecurityException e
        23: .line 392
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 4 /* e */
        start local 4 // java.io.IOException e
        24: .line 393
            aload 0 /* this */
            iconst_0
            putfield java.net.ServerSocket.bound:Z
        25: .line 394
            aload 4 /* e */
            athrow
        end local 4 // java.io.IOException e
        26: .line 396
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.net.InetSocketAddress epoint
        end local 2 // int backlog
        end local 1 // java.net.SocketAddress endpoint
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0      this  Ljava/net/ServerSocket;
            0   27     1  endpoint  Ljava/net/SocketAddress;
            0   27     2   backlog  I
            9   27     3    epoint  Ljava/net/InetSocketAddress;
           14   19     4  security  Ljava/lang/SecurityManager;
           21   23     4         e  Ljava/lang/SecurityException;
           24   26     4         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          13    19      20  Class java.lang.SecurityException
          13    19      23  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      endpoint  
      backlog   

  public java.net.InetAddress getInetAddress();
    descriptor: ()Ljava/net/InetAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 417
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifne 2
         1: .line 418
            aconst_null
            areturn
         2: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getInetAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         3: .line 421
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 2 /* sm */
        start local 2 // java.lang.SecurityManager sm
         4: .line 422
            aload 2 /* sm */
            ifnull 6
         5: .line 423
            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
         6: .line 424
      StackMap locals: java.net.InetAddress java.lang.SecurityManager
      StackMap stack:
            aload 1 /* in */
         7: areturn
        end local 2 // java.lang.SecurityManager sm
        end local 1 // java.net.InetAddress in
         8: .line 425
      StackMap locals: java.net.ServerSocket
      StackMap stack: java.lang.SecurityException
            pop
         9: .line 426
            invokestatic java.net.InetAddress.getLoopbackAddress:()Ljava/net/InetAddress;
            areturn
        10: .line 427
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
        11: .line 432
            aconst_null
            areturn
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/net/ServerSocket;
            3    8     1    in  Ljava/net/InetAddress;
            4    8     2    sm  Ljava/lang/SecurityManager;
      Exception table:
        from    to  target  type
           2     7       8  Class java.lang.SecurityException
           2     7      10  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.ServerSocket this
         0: .line 446
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifne 2
         1: .line 447
            iconst_m1
            ireturn
         2: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getLocalPort:()I
         3: ireturn
         4: .line 450
      StackMap locals:
      StackMap stack: java.net.SocketException
            pop
         5: .line 455
            iconst_m1
            ireturn
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/ServerSocket;
      Exception table:
        from    to  target  type
           2     3       4  Class java.net.SocketException

  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.ServerSocket this
         0: .line 485
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifne 2
         1: .line 486
            aconst_null
            areturn
         2: .line 487
      StackMap locals:
      StackMap stack:
            new java.net.InetSocketAddress
            dup
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getInetAddress:()Ljava/net/InetAddress;
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getLocalPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/net/InetAddress;I)V
            areturn
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/ServerSocket;

  public java.net.Socket accept();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 519
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 520
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 521
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifne 4
         3: .line 522
            new java.net.SocketException
            dup
            ldc "Socket is not bound yet"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 523
      StackMap locals:
      StackMap stack:
            new java.net.Socket
            dup
            aconst_null
            invokespecial java.net.Socket.<init>:(Ljava/net/SocketImpl;)V
            astore 1 /* s */
        start local 1 // java.net.Socket s
         5: .line 524
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual java.net.ServerSocket.implAccept:(Ljava/net/Socket;)V
         6: .line 525
            aload 1 /* s */
            areturn
        end local 1 // java.net.Socket s
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/net/ServerSocket;
            5    7     1     s  Ljava/net/Socket;
    Exceptions:
      throws java.io.IOException

  protected final void implAccept(java.net.Socket);
    descriptor: (Ljava/net/Socket;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.net.ServerSocket this
        start local 1 // java.net.Socket s
         0: .line 545
            aconst_null
            astore 2 /* si */
        start local 2 // java.net.SocketImpl si
         1: .line 547
            aload 1 /* s */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            ifnonnull 3
         2: .line 548
            aload 1 /* s */
            invokevirtual java.net.Socket.setImpl:()V
            goto 4
         3: .line 550
      StackMap locals: java.net.SocketImpl
      StackMap stack:
            aload 1 /* s */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.reset:()V
         4: .line 552
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            getfield java.net.Socket.impl:Ljava/net/SocketImpl;
            astore 2 /* si */
         5: .line 553
            aload 1 /* s */
            aconst_null
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
         6: .line 554
            aload 2 /* si */
            new java.net.InetAddress
            dup
            invokespecial java.net.InetAddress.<init>:()V
            putfield java.net.SocketImpl.address:Ljava/net/InetAddress;
         7: .line 555
            aload 2 /* si */
            new java.io.FileDescriptor
            dup
            invokespecial java.io.FileDescriptor.<init>:()V
            putfield java.net.SocketImpl.fd:Ljava/io/FileDescriptor;
         8: .line 556
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            aload 2 /* si */
            invokevirtual java.net.SocketImpl.accept:(Ljava/net/SocketImpl;)V
         9: .line 557
            aload 2 /* si */
            getfield java.net.SocketImpl.fd:Ljava/io/FileDescriptor;
            invokestatic java.net.SocketCleanable.register:(Ljava/io/FileDescriptor;)V
        10: .line 559
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 3 /* security */
        start local 3 // java.lang.SecurityManager security
        11: .line 560
            aload 3 /* security */
            ifnull 26
        12: .line 561
            aload 3 /* security */
            aload 2 /* si */
            invokevirtual java.net.SocketImpl.getInetAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
        13: .line 562
            aload 2 /* si */
            invokevirtual java.net.SocketImpl.getPort:()I
        14: .line 561
            invokevirtual java.lang.SecurityManager.checkAccept:(Ljava/lang/String;I)V
        end local 3 // java.lang.SecurityManager security
        15: .line 564
            goto 26
      StackMap locals:
      StackMap stack: java.io.IOException
        16: astore 3 /* e */
        start local 3 // java.io.IOException e
        17: .line 565
            aload 2 /* si */
            ifnull 19
        18: .line 566
            aload 2 /* si */
            invokevirtual java.net.SocketImpl.reset:()V
        19: .line 567
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 1 /* s */
            aload 2 /* si */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        20: .line 568
            aload 3 /* e */
            athrow
        end local 3 // java.io.IOException e
        21: .line 569
      StackMap locals: java.net.ServerSocket java.net.Socket java.net.SocketImpl
      StackMap stack: java.lang.SecurityException
            astore 3 /* e */
        start local 3 // java.lang.SecurityException e
        22: .line 570
            aload 2 /* si */
            ifnull 24
        23: .line 571
            aload 2 /* si */
            invokevirtual java.net.SocketImpl.reset:()V
        24: .line 572
      StackMap locals: java.lang.SecurityException
      StackMap stack:
            aload 1 /* s */
            aload 2 /* si */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        25: .line 573
            aload 3 /* e */
            athrow
        end local 3 // java.lang.SecurityException e
        26: .line 575
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            aload 2 /* si */
            putfield java.net.Socket.impl:Ljava/net/SocketImpl;
        27: .line 576
            aload 1 /* s */
            invokevirtual java.net.Socket.postAccept:()V
        28: .line 577
            return
        end local 2 // java.net.SocketImpl si
        end local 1 // java.net.Socket s
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   29     0      this  Ljava/net/ServerSocket;
            0   29     1         s  Ljava/net/Socket;
            1   29     2        si  Ljava/net/SocketImpl;
           11   15     3  security  Ljava/lang/SecurityManager;
           17   21     3         e  Ljava/io/IOException;
           22   26     3         e  Ljava/lang/SecurityException;
      Exception table:
        from    to  target  type
           1    15      16  Class java.io.IOException
           1    15      21  Class java.lang.SecurityException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

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

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

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

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

  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.ServerSocket this
        start local 1 // int timeout
         0: .line 662
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 663
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 664
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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
         3: .line 665
            return
        end local 1 // int timeout
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljava/net/ServerSocket;
            0    4     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.ServerSocket this
         0: .line 676
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 677
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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 680
            aload 1 /* o */
            instanceof java.lang.Integer
            ifeq 5
         4: .line 681
            aload 1 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         5: .line 683
      StackMap locals: java.lang.Object
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/ServerSocket;
            3    6     1     o  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException

  public void setReuseAddress(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.net.ServerSocket this
        start local 1 // boolean on
         0: .line 724
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 725
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 726
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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 727
            return
        end local 1 // boolean on
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/net/ServerSocket;
            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.ServerSocket this
         0: .line 740
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 741
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/net/ServerSocket;
    Exceptions:
      throws java.net.SocketException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 759
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isBound:()Z
            ifne 2
         1: .line 760
            ldc "ServerSocket[unbound]"
            areturn
         2: .line 762
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            ifnull 5
         3: .line 763
            invokestatic java.net.InetAddress.getLoopbackAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         4: goto 6
        end local 1 // java.net.InetAddress in
         5: .line 765
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.ServerSocket.impl:Ljava/net/SocketImpl;
            invokevirtual java.net.SocketImpl.getInetAddress:()Ljava/net/InetAddress;
            astore 1 /* in */
        start local 1 // java.net.InetAddress in
         6: .line 766
      StackMap locals: java.net.InetAddress
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "ServerSocket[addr="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* in */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         7: .line 767
            ldc ",localport="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield java.net.ServerSocket.impl: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;
         8: .line 766
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.net.InetAddress in
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/ServerSocket;
            4    5     1    in  Ljava/net/InetAddress;
            6    9     1    in  Ljava/net/InetAddress;

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

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

  public static synchronized void setSocketFactory(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 809
            getstatic java.net.ServerSocket.factory:Ljava/net/SocketImplFactory;
            ifnull 2
         1: .line 810
            new java.net.SocketException
            dup
            ldc "factory already defined"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 812
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 1 /* security */
        start local 1 // java.lang.SecurityManager security
         3: .line 813
            aload 1 /* security */
            ifnull 5
         4: .line 814
            aload 1 /* security */
            invokevirtual java.lang.SecurityManager.checkSetFactory:()V
         5: .line 816
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 0 /* fac */
            putstatic java.net.ServerSocket.factory:Ljava/net/SocketImplFactory;
         6: .line 817
            return
        end local 1 // java.lang.SecurityManager security
        end local 0 // java.net.SocketImplFactory fac
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0       fac  Ljava/net/SocketImplFactory;
            3    7     1  security  Ljava/lang/SecurityManager;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fac   

  public 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.ServerSocket this
        start local 1 // int size
         0: .line 856
            iload 1 /* size */
            ifgt 2
         1: .line 857
            new java.lang.IllegalArgumentException
            dup
            ldc "negative receive size"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 859
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 4
         3: .line 860
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 861
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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 862
            return
        end local 1 // int size
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/net/ServerSocket;
            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.ServerSocket this
         0: .line 880
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.isClosed:()Z
            ifeq 2
         1: .line 881
            new java.net.SocketException
            dup
            ldc "Socket is closed"
            invokespecial java.net.SocketException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 882
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         3: .line 883
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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 884
            aload 2 /* o */
            instanceof java.lang.Integer
            ifeq 6
         5: .line 885
            aload 2 /* o */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 1 /* result */
         6: .line 887
      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.ServerSocket this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljava/net/ServerSocket;
            3    7     1  result  I
            4    7     2       o  Ljava/lang/Object;
    Exceptions:
      throws java.net.SocketException

  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.ServerSocket this
        start local 1 // int connectionTime
        start local 2 // int latency
        start local 3 // int bandwidth
         0: .line 933
            return
        end local 3 // int bandwidth
        end local 2 // int latency
        end local 1 // int connectionTime
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Ljava/net/ServerSocket;
            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.ServerSocket setOption(java.net.SocketOption<T>, T);
    descriptor: (Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/ServerSocket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.net.ServerSocket this
        start local 1 // java.net.SocketOption name
        start local 2 // java.lang.Object value
         0: .line 965
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            aload 1 /* name */
            aload 2 /* value */
            invokevirtual java.net.SocketImpl.setOption:(Ljava/net/SocketOption;Ljava/lang/Object;)V
         1: .line 966
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.net.SocketOption name
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljava/net/ServerSocket;
            0    2     1   name  Ljava/net/SocketOption<TT;>;
            0    2     2  value  TT;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;TT;)Ljava/net/ServerSocket;
    MethodParameters:
       Name  Flags
      name   
      value  

  public <T> T getOption(java.net.SocketOption<T>);
    descriptor: (Ljava/net/SocketOption;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.net.ServerSocket this
        start local 1 // java.net.SocketOption name
         0: .line 993
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.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.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/net/ServerSocket;
            0    1     1  name  Ljava/net/SocketOption<TT;>;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/net/SocketOption<TT;>;)TT;
    MethodParameters:
      Name  Flags
      name  

  public java.util.Set<java.net.SocketOption<?>> supportedOptions();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.net.ServerSocket this
         0: .line 1011
            aload 0 /* this */
            getfield java.net.ServerSocket.options:Ljava/util/Set;
            astore 1 /* so */
        start local 1 // java.util.Set so
         1: .line 1012
            aload 1 /* so */
            ifnull 3
         2: .line 1013
            aload 1 /* so */
            areturn
         3: .line 1016
      StackMap locals: java.util.Set
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.net.ServerSocket.getImpl:()Ljava/net/SocketImpl;
            astore 2 /* impl */
        start local 2 // java.net.SocketImpl impl
         4: .line 1017
            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.ServerSocket.options:Ljava/util/Set;
        end local 2 // java.net.SocketImpl impl
         5: .line 1018
            goto 8
      StackMap locals:
      StackMap stack: java.io.IOException
         6: pop
         7: .line 1019
            aload 0 /* this */
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            putfield java.net.ServerSocket.options:Ljava/util/Set;
         8: .line 1021
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.net.ServerSocket.options:Ljava/util/Set;
            areturn
        end local 1 // java.util.Set so
        end local 0 // java.net.ServerSocket this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/net/ServerSocket;
            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: "ServerSocket.java"
NestMembers:
  java.net.ServerSocket$1  java.net.ServerSocket$2
InnerClasses:
  java.net.ServerSocket$1
  java.net.ServerSocket$2