final class sun.security.ssl.SSLServerSocketImpl extends javax.net.ssl.SSLServerSocket
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.SSLServerSocketImpl
  super_class: javax.net.ssl.SSLServerSocket
{
  private sun.security.ssl.SSLContextImpl sslContext;
    descriptor: Lsun/security/ssl/SSLContextImpl;
    flags: (0x0002) ACC_PRIVATE

  private byte doClientAuth;
    descriptor: B
    flags: (0x0002) ACC_PRIVATE

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

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

  private sun.security.ssl.CipherSuiteList enabledCipherSuites;
    descriptor: Lsun/security/ssl/CipherSuiteList;
    flags: (0x0002) ACC_PRIVATE

  private sun.security.ssl.ProtocolList enabledProtocols;
    descriptor: Lsun/security/ssl/ProtocolList;
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(int, int, sun.security.ssl.SSLContextImpl);
    descriptor: (IILsun/security/ssl/SSLContextImpl;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // int port
        start local 2 // int backlog
        start local 3 // sun.security.ssl.SSLContextImpl context
         0: .line 98
            aload 0 /* this */
            iload 1 /* port */
            iload 2 /* backlog */
            invokespecial javax.net.ssl.SSLServerSocket.<init>:(II)V
         1: .line 69
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
         2: .line 72
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
         3: .line 75
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
         4: .line 78
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
         5: .line 81
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         6: .line 84
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.checkedEnabled:Z
         7: .line 99
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual sun.security.ssl.SSLServerSocketImpl.initServer:(Lsun/security/ssl/SSLContextImpl;)V
         8: .line 100
            return
        end local 3 // sun.security.ssl.SSLContextImpl context
        end local 2 // int backlog
        end local 1 // int port
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lsun/security/ssl/SSLServerSocketImpl;
            0    9     1     port  I
            0    9     2  backlog  I
            0    9     3  context  Lsun/security/ssl/SSLContextImpl;
    Exceptions:
      throws java.io.IOException, javax.net.ssl.SSLException
    MethodParameters:
         Name  Flags
      port     
      backlog  
      context  

  void <init>(int, int, java.net.InetAddress, sun.security.ssl.SSLContextImpl);
    descriptor: (IILjava/net/InetAddress;Lsun/security/ssl/SSLContextImpl;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // int port
        start local 2 // int backlog
        start local 3 // java.net.InetAddress address
        start local 4 // sun.security.ssl.SSLContextImpl context
         0: .line 125
            aload 0 /* this */
            iload 1 /* port */
            iload 2 /* backlog */
            aload 3 /* address */
            invokespecial javax.net.ssl.SSLServerSocket.<init>:(IILjava/net/InetAddress;)V
         1: .line 69
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
         2: .line 72
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
         3: .line 75
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
         4: .line 78
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
         5: .line 81
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         6: .line 84
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.checkedEnabled:Z
         7: .line 126
            aload 0 /* this */
            aload 4 /* context */
            invokevirtual sun.security.ssl.SSLServerSocketImpl.initServer:(Lsun/security/ssl/SSLContextImpl;)V
         8: .line 127
            return
        end local 4 // sun.security.ssl.SSLContextImpl context
        end local 3 // java.net.InetAddress address
        end local 2 // int backlog
        end local 1 // int port
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lsun/security/ssl/SSLServerSocketImpl;
            0    9     1     port  I
            0    9     2  backlog  I
            0    9     3  address  Ljava/net/InetAddress;
            0    9     4  context  Lsun/security/ssl/SSLContextImpl;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      port     
      backlog  
      address  
      context  

  void <init>(sun.security.ssl.SSLContextImpl);
    descriptor: (Lsun/security/ssl/SSLContextImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // sun.security.ssl.SSLContextImpl context
         0: .line 134
            aload 0 /* this */
            invokespecial javax.net.ssl.SSLServerSocket.<init>:()V
         1: .line 69
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
         2: .line 72
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
         3: .line 75
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
         4: .line 78
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
         5: .line 81
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         6: .line 84
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.checkedEnabled:Z
         7: .line 135
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual sun.security.ssl.SSLServerSocketImpl.initServer:(Lsun/security/ssl/SSLContextImpl;)V
         8: .line 136
            return
        end local 1 // sun.security.ssl.SSLContextImpl context
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lsun/security/ssl/SSLServerSocketImpl;
            0    9     1  context  Lsun/security/ssl/SSLContextImpl;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      context  

  private void initServer(sun.security.ssl.SSLContextImpl);
    descriptor: (Lsun/security/ssl/SSLContextImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // sun.security.ssl.SSLContextImpl context
         0: .line 143
            aload 1 /* context */
            ifnonnull 2
         1: .line 144
            new javax.net.ssl.SSLException
            dup
            ldc "No Authentication context given"
            invokespecial javax.net.ssl.SSLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            putfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
         3: .line 147
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            iconst_1
            invokevirtual sun.security.ssl.SSLContextImpl.getDefaultCipherSuiteList:(Z)Lsun/security/ssl/CipherSuiteList;
            putfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
         4: .line 148
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            iconst_1
            invokevirtual sun.security.ssl.SSLContextImpl.getDefaultProtocolList:(Z)Lsun/security/ssl/ProtocolList;
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         5: .line 149
            return
        end local 1 // sun.security.ssl.SSLContextImpl context
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lsun/security/ssl/SSLServerSocketImpl;
            0    6     1  context  Lsun/security/ssl/SSLContextImpl;
    Exceptions:
      throws javax.net.ssl.SSLException
    MethodParameters:
         Name  Flags
      context  

  public java.lang.String[] getSupportedCipherSuites();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 162
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            invokevirtual sun.security.ssl.SSLContextImpl.getSupportedCipherSuiteList:()Lsun/security/ssl/CipherSuiteList;
            invokevirtual sun.security.ssl.CipherSuiteList.toStringArray:()[Ljava/lang/String;
            areturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public synchronized java.lang.String[] getEnabledCipherSuites();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 171
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
            invokevirtual sun.security.ssl.CipherSuiteList.toStringArray:()[Ljava/lang/String;
            areturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public synchronized void setEnabledCipherSuites(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // java.lang.String[] suites
         0: .line 182
            aload 0 /* this */
            new sun.security.ssl.CipherSuiteList
            dup
            aload 1 /* suites */
            invokespecial sun.security.ssl.CipherSuiteList.<init>:([Ljava/lang/String;)V
            putfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
         1: .line 183
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.SSLServerSocketImpl.checkedEnabled:Z
         2: .line 184
            return
        end local 1 // java.lang.String[] suites
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/security/ssl/SSLServerSocketImpl;
            0    3     1  suites  [Ljava/lang/String;
    MethodParameters:
        Name  Flags
      suites  

  public java.lang.String[] getSupportedProtocols();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 187
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            invokevirtual sun.security.ssl.SSLContextImpl.getSuportedProtocolList:()Lsun/security/ssl/ProtocolList;
            invokevirtual sun.security.ssl.ProtocolList.toStringArray:()[Ljava/lang/String;
            areturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public synchronized void setEnabledProtocols(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // java.lang.String[] protocols
         0: .line 200
            aload 0 /* this */
            new sun.security.ssl.ProtocolList
            dup
            aload 1 /* protocols */
            invokespecial sun.security.ssl.ProtocolList.<init>:([Ljava/lang/String;)V
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         1: .line 201
            return
        end local 1 // java.lang.String[] protocols
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/security/ssl/SSLServerSocketImpl;
            0    2     1  protocols  [Ljava/lang/String;
    MethodParameters:
           Name  Flags
      protocols  

  public synchronized java.lang.String[] getEnabledProtocols();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 204
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
            invokevirtual sun.security.ssl.ProtocolList.toStringArray:()[Ljava/lang/String;
            areturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public void setNeedClientAuth(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // boolean flag
         0: .line 212
            aload 0 /* this */
            iload 1 /* flag */
            ifeq 2
         1: .line 213
            iconst_2
            goto 3
      StackMap locals:
      StackMap stack: sun.security.ssl.SSLServerSocketImpl
         2: iconst_0
         3: .line 212
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: sun.security.ssl.SSLServerSocketImpl int
            putfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
         4: .line 214
            return
        end local 1 // boolean flag
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/SSLServerSocketImpl;
            0    5     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public boolean getNeedClientAuth();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 217
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
            iconst_2
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public void setWantClientAuth(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // boolean flag
         0: .line 225
            aload 0 /* this */
            iload 1 /* flag */
            ifeq 2
         1: .line 226
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: sun.security.ssl.SSLServerSocketImpl
         2: iconst_0
         3: .line 225
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: sun.security.ssl.SSLServerSocketImpl int
            putfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
         4: .line 227
            return
        end local 1 // boolean flag
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/SSLServerSocketImpl;
            0    5     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public boolean getWantClientAuth();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 230
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
            iconst_1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public void setUseClientMode(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // boolean flag
         0: .line 245
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
            iload 1 /* flag */
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_1
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: int int
         2: if_icmpeq 7
         3: .line 246
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
            invokevirtual sun.security.ssl.SSLContextImpl.isDefaultProtocolList:(Lsun/security/ssl/ProtocolList;)Z
            ifeq 7
         4: .line 247
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            iload 1 /* flag */
            ifeq 5
            iconst_0
            goto 6
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: sun.security.ssl.SSLServerSocketImpl sun.security.ssl.SSLContextImpl
         5: iconst_1
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: sun.security.ssl.SSLServerSocketImpl sun.security.ssl.SSLContextImpl int
         6: invokevirtual sun.security.ssl.SSLContextImpl.getDefaultProtocolList:(Z)Lsun/security/ssl/ProtocolList;
            putfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         7: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* flag */
            ifeq 8
            iconst_0
            goto 9
      StackMap locals:
      StackMap stack: sun.security.ssl.SSLServerSocketImpl
         8: iconst_1
      StackMap locals: sun.security.ssl.SSLServerSocketImpl int
      StackMap stack: sun.security.ssl.SSLServerSocketImpl int
         9: putfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
        10: .line 251
            return
        end local 1 // boolean flag
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/security/ssl/SSLServerSocketImpl;
            0   11     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public boolean getUseClientMode();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 254
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public void setEnableSessionCreation(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
        start local 1 // boolean flag
         0: .line 263
            aload 0 /* this */
            iload 1 /* flag */
            putfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
         1: .line 264
            return
        end local 1 // boolean flag
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/SSLServerSocketImpl;
            0    2     1  flag  Z
    MethodParameters:
      Name  Flags
      flag  

  public boolean getEnableSessionCreation();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 271
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
            ireturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;

  public java.net.Socket accept();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=2, args_size=1
        start local 0 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 280
            new sun.security.ssl.SSLSocketImpl
            dup
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.sslContext:Lsun/security/ssl/SSLContextImpl;
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.useServerMode:Z
         1: .line 281
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enabledCipherSuites:Lsun/security/ssl/CipherSuiteList;
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.doClientAuth:B
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enableSessionCreation:Z
         2: .line 282
            aload 0 /* this */
            getfield sun.security.ssl.SSLServerSocketImpl.enabledProtocols:Lsun/security/ssl/ProtocolList;
         3: .line 280
            invokespecial sun.security.ssl.SSLSocketImpl.<init>:(Lsun/security/ssl/SSLContextImpl;ZLsun/security/ssl/CipherSuiteList;BZLsun/security/ssl/ProtocolList;)V
            astore 1 /* s */
        start local 1 // sun.security.ssl.SSLSocketImpl s
         4: .line 284
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual sun.security.ssl.SSLServerSocketImpl.implAccept:(Ljava/net/Socket;)V
         5: .line 285
            aload 1 /* s */
            invokevirtual sun.security.ssl.SSLSocketImpl.doneConnect:()V
         6: .line 286
            aload 1 /* s */
            areturn
        end local 1 // sun.security.ssl.SSLSocketImpl s
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/ssl/SSLServerSocketImpl;
            4    7     1     s  Lsun/security/ssl/SSLSocketImpl;
    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 // sun.security.ssl.SSLServerSocketImpl this
         0: .line 293
            new java.lang.StringBuilder
            dup
            ldc "[SSL: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokespecial javax.net.ssl.SSLServerSocket.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.security.ssl.SSLServerSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/SSLServerSocketImpl;
}
SourceFile: "SSLServerSocketImpl.java"