final class sun.net.www.protocol.https.HttpsClient extends sun.net.www.http.HttpClient implements javax.net.ssl.HandshakeCompletedListener
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.net.www.protocol.https.HttpsClient
  super_class: sun.net.www.http.HttpClient
{
  private static final int httpsPortNumber;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 443

  private static final java.lang.String defaultHVCanonicalName;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "javax.net.ssl.HttpsURLConnection.DefaultHostnameVerifier"

  private javax.net.ssl.HostnameVerifier hv;
    descriptor: Ljavax/net/ssl/HostnameVerifier;
    flags: (0x0002) ACC_PRIVATE

  private javax.net.ssl.SSLSocketFactory sslSocketFactory;
    descriptor: Ljavax/net/ssl/SSLSocketFactory;
    flags: (0x0002) ACC_PRIVATE

  private javax.net.ssl.SSLSession session;
    descriptor: Ljavax/net/ssl/SSLSession;
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 108
            ldc Lsun/net/www/protocol/https/HttpsClient;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.net.www.protocol.https.HttpsClient.$assertionsDisabled:Z
         3: .line 118
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected int getDefaultPort();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 122
            sipush 443
            ireturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;

  private java.lang.String[] getCipherSuites();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 143
            new sun.security.action.GetPropertyAction
            dup
            ldc "https.cipherSuites"
            invokespecial sun.security.action.GetPropertyAction.<init>:(Ljava/lang/String;)V
         1: .line 142
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* cipherString */
        start local 2 // java.lang.String cipherString
         2: .line 145
            aload 2 /* cipherString */
            ifnull 3
            ldc ""
            aload 2 /* cipherString */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 146
      StackMap locals: sun.net.www.protocol.https.HttpsClient top java.lang.String
      StackMap stack:
            aconst_null
            astore 1 /* ciphers */
        start local 1 // java.lang.String[] ciphers
         4: .line 147
            goto 16
        end local 1 // java.lang.String[] ciphers
         5: .line 149
      StackMap locals:
      StackMap stack:
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            astore 4 /* v */
        start local 4 // java.util.Vector v
         6: .line 151
            new java.util.StringTokenizer
            dup
            aload 2 /* cipherString */
            ldc ","
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 3 /* tokenizer */
        start local 3 // java.util.StringTokenizer tokenizer
         7: .line 152
            goto 9
         8: .line 153
      StackMap locals: java.util.StringTokenizer java.util.Vector
      StackMap stack:
            aload 4 /* v */
            aload 3 /* tokenizer */
            invokevirtual java.util.StringTokenizer.nextToken:()Ljava/lang/String;
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
         9: .line 152
      StackMap locals:
      StackMap stack:
            aload 3 /* tokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 8
        10: .line 154
            aload 4 /* v */
            invokevirtual java.util.Vector.size:()I
            anewarray java.lang.String
            astore 1 /* ciphers */
        start local 1 // java.lang.String[] ciphers
        11: .line 155
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        12: goto 15
        13: .line 156
      StackMap locals: sun.net.www.protocol.https.HttpsClient java.lang.String[] java.lang.String java.util.StringTokenizer java.util.Vector int
      StackMap stack:
            aload 1 /* ciphers */
            iload 5 /* i */
            aload 4 /* v */
            iload 5 /* i */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            aastore
        14: .line 155
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            aload 1 /* ciphers */
            arraylength
            if_icmplt 13
        end local 5 // int i
        end local 4 // java.util.Vector v
        end local 3 // java.util.StringTokenizer tokenizer
        16: .line 158
      StackMap locals:
      StackMap stack:
            aload 1 /* ciphers */
            areturn
        end local 2 // java.lang.String cipherString
        end local 1 // java.lang.String[] ciphers
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0          this  Lsun/net/www/protocol/https/HttpsClient;
            4    5     1       ciphers  [Ljava/lang/String;
           11   17     1       ciphers  [Ljava/lang/String;
            2   17     2  cipherString  Ljava/lang/String;
            7   16     3     tokenizer  Ljava/util/StringTokenizer;
            6   16     4             v  Ljava/util/Vector<Ljava/lang/String;>;
           12   16     5             i  I

  private java.lang.String[] getProtocols();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 167
            new sun.security.action.GetPropertyAction
            dup
            ldc "https.protocols"
            invokespecial sun.security.action.GetPropertyAction.<init>:(Ljava/lang/String;)V
         1: .line 166
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* protocolString */
        start local 2 // java.lang.String protocolString
         2: .line 169
            aload 2 /* protocolString */
            ifnull 3
            ldc ""
            aload 2 /* protocolString */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 170
      StackMap locals: sun.net.www.protocol.https.HttpsClient top java.lang.String
      StackMap stack:
            aconst_null
            astore 1 /* protocols */
        start local 1 // java.lang.String[] protocols
         4: .line 171
            goto 16
        end local 1 // java.lang.String[] protocols
         5: .line 173
      StackMap locals:
      StackMap stack:
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            astore 4 /* v */
        start local 4 // java.util.Vector v
         6: .line 175
            new java.util.StringTokenizer
            dup
            aload 2 /* protocolString */
            ldc ","
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 3 /* tokenizer */
        start local 3 // java.util.StringTokenizer tokenizer
         7: .line 176
            goto 9
         8: .line 177
      StackMap locals: java.util.StringTokenizer java.util.Vector
      StackMap stack:
            aload 4 /* v */
            aload 3 /* tokenizer */
            invokevirtual java.util.StringTokenizer.nextToken:()Ljava/lang/String;
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
         9: .line 176
      StackMap locals:
      StackMap stack:
            aload 3 /* tokenizer */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifne 8
        10: .line 178
            aload 4 /* v */
            invokevirtual java.util.Vector.size:()I
            anewarray java.lang.String
            astore 1 /* protocols */
        start local 1 // java.lang.String[] protocols
        11: .line 179
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        12: goto 15
        13: .line 180
      StackMap locals: sun.net.www.protocol.https.HttpsClient java.lang.String[] java.lang.String java.util.StringTokenizer java.util.Vector int
      StackMap stack:
            aload 1 /* protocols */
            iload 5 /* i */
            aload 4 /* v */
            iload 5 /* i */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            aastore
        14: .line 179
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            aload 1 /* protocols */
            arraylength
            if_icmplt 13
        end local 5 // int i
        end local 4 // java.util.Vector v
        end local 3 // java.util.StringTokenizer tokenizer
        16: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* protocols */
            areturn
        end local 2 // java.lang.String protocolString
        end local 1 // java.lang.String[] protocols
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0            this  Lsun/net/www/protocol/https/HttpsClient;
            4    5     1       protocols  [Ljava/lang/String;
           11   17     1       protocols  [Ljava/lang/String;
            2   17     2  protocolString  Ljava/lang/String;
            7   16     3       tokenizer  Ljava/util/StringTokenizer;
            6   16     4               v  Ljava/util/Vector<Ljava/lang/String;>;
           12   16     5               i  I

  private java.lang.String getUserAgent();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 188
            new sun.security.action.GetPropertyAction
            dup
            ldc "https.agent"
            invokespecial sun.security.action.GetPropertyAction.<init>:(Ljava/lang/String;)V
         1: .line 187
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* userAgent */
        start local 1 // java.lang.String userAgent
         2: .line 189
            aload 1 /* userAgent */
            ifnull 3
            aload 1 /* userAgent */
            invokevirtual java.lang.String.length:()I
            ifne 4
         3: .line 190
      StackMap locals: java.lang.String
      StackMap stack:
            ldc "JSSE"
            astore 1 /* userAgent */
         4: .line 192
      StackMap locals:
      StackMap stack:
            aload 1 /* userAgent */
            areturn
        end local 1 // java.lang.String userAgent
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lsun/net/www/protocol/https/HttpsClient;
            2    5     1  userAgent  Ljava/lang/String;

  private void <init>(javax.net.ssl.SSLSocketFactory, java.net.URL);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.SSLSocketFactory sf
        start local 2 // java.net.URL url
         0: .line 217
            aload 0 /* this */
            aload 1 /* sf */
            aload 2 /* url */
            aconst_null
            iconst_m1
            invokespecial sun.net.www.protocol.https.HttpsClient.<init>:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/lang/String;I)V
         1: .line 218
            return
        end local 2 // java.net.URL url
        end local 1 // javax.net.ssl.SSLSocketFactory sf
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/www/protocol/https/HttpsClient;
            0    2     1    sf  Ljavax/net/ssl/SSLSocketFactory;
            0    2     2   url  Ljava/net/URL;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sf    
      url   

  void <init>(javax.net.ssl.SSLSocketFactory, java.net.URL, java.lang.String, int);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/lang/String;I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.SSLSocketFactory sf
        start local 2 // java.net.URL url
        start local 3 // java.lang.String proxyHost
        start local 4 // int proxyPort
         0: .line 226
            aload 0 /* this */
            aload 1 /* sf */
            aload 2 /* url */
            aload 3 /* proxyHost */
            iload 4 /* proxyPort */
            iconst_m1
            invokespecial sun.net.www.protocol.https.HttpsClient.<init>:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/lang/String;II)V
         1: .line 227
            return
        end local 4 // int proxyPort
        end local 3 // java.lang.String proxyHost
        end local 2 // java.net.URL url
        end local 1 // javax.net.ssl.SSLSocketFactory sf
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/net/www/protocol/https/HttpsClient;
            0    2     1         sf  Ljavax/net/ssl/SSLSocketFactory;
            0    2     2        url  Ljava/net/URL;
            0    2     3  proxyHost  Ljava/lang/String;
            0    2     4  proxyPort  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      sf         
      url        
      proxyHost  
      proxyPort  

  void <init>(javax.net.ssl.SSLSocketFactory, java.net.URL, java.lang.String, int, int);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/lang/String;II)V
    flags: (0x0000) 
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.SSLSocketFactory sf
        start local 2 // java.net.URL url
        start local 3 // java.lang.String proxyHost
        start local 4 // int proxyPort
        start local 5 // int connectTimeout
         0: .line 236
            aload 0 /* this */
            aload 1 /* sf */
            aload 2 /* url */
         1: .line 237
            aload 3 /* proxyHost */
            ifnonnull 2
            aconst_null
            goto 3
         2: .line 238
      StackMap locals: uninitialized-this javax.net.ssl.SSLSocketFactory java.net.URL java.lang.String int int
      StackMap stack: uninitialized-this javax.net.ssl.SSLSocketFactory java.net.URL
            aload 3 /* proxyHost */
            iload 4 /* proxyPort */
            ldc "https"
            invokestatic sun.net.www.http.HttpClient.newHttpProxy:(Ljava/lang/String;ILjava/lang/String;)Ljava/net/Proxy;
         3: .line 239
      StackMap locals: uninitialized-this javax.net.ssl.SSLSocketFactory java.net.URL java.lang.String int int
      StackMap stack: uninitialized-this javax.net.ssl.SSLSocketFactory java.net.URL java.net.Proxy
            iload 5 /* connectTimeout */
            invokespecial sun.net.www.protocol.https.HttpsClient.<init>:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/net/Proxy;I)V
         4: .line 240
            return
        end local 5 // int connectTimeout
        end local 4 // int proxyPort
        end local 3 // java.lang.String proxyHost
        end local 2 // java.net.URL url
        end local 1 // javax.net.ssl.SSLSocketFactory sf
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lsun/net/www/protocol/https/HttpsClient;
            0    5     1              sf  Ljavax/net/ssl/SSLSocketFactory;
            0    5     2             url  Ljava/net/URL;
            0    5     3       proxyHost  Ljava/lang/String;
            0    5     4       proxyPort  I
            0    5     5  connectTimeout  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      sf              
      url             
      proxyHost       
      proxyPort       
      connectTimeout  

  void <init>(javax.net.ssl.SSLSocketFactory, java.net.URL, java.net.Proxy, int);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/net/Proxy;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.SSLSocketFactory sf
        start local 2 // java.net.URL url
        start local 3 // java.net.Proxy proxy
        start local 4 // int connectTimeout
         0: .line 245
            aload 0 /* this */
            invokespecial sun.net.www.http.HttpClient.<init>:()V
         1: .line 248
            invokestatic sun.net.www.protocol.http.HttpURLConnection.getHttpLogger:()Lsun/util/logging/PlatformLogger;
            astore 5 /* logger */
        start local 5 // sun.util.logging.PlatformLogger logger
         2: .line 249
            aload 5 /* logger */
            getstatic sun.util.logging.PlatformLogger$Level.FINEST:Lsun/util/logging/PlatformLogger$Level;
            invokevirtual sun.util.logging.PlatformLogger.isLoggable:(Lsun/util/logging/PlatformLogger$Level;)Z
            ifeq 6
         3: .line 250
            aload 5 /* logger */
            new java.lang.StringBuilder
            dup
            ldc "Creating new HttpsClient with url:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* url */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " and proxy:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* proxy */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 251
            ldc " with connect timeout:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* connectTimeout */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 250
            invokevirtual sun.util.logging.PlatformLogger.finest:(Ljava/lang/String;)V
         6: .line 253
      StackMap locals: sun.net.www.protocol.https.HttpsClient javax.net.ssl.SSLSocketFactory java.net.URL java.net.Proxy int sun.util.logging.PlatformLogger
      StackMap stack:
            aload 0 /* this */
            aload 3 /* proxy */
            putfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
         7: .line 254
            aload 0 /* this */
            aload 1 /* sf */
            invokevirtual sun.net.www.protocol.https.HttpsClient.setSSLSocketFactory:(Ljavax/net/ssl/SSLSocketFactory;)V
         8: .line 255
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.protocol.https.HttpsClient.proxyDisabled:Z
         9: .line 257
            aload 0 /* this */
            aload 2 /* url */
            invokevirtual java.net.URL.getHost:()Ljava/lang/String;
            putfield sun.net.www.protocol.https.HttpsClient.host:Ljava/lang/String;
        10: .line 258
            aload 0 /* this */
            aload 2 /* url */
            putfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
        11: .line 259
            aload 0 /* this */
            aload 2 /* url */
            invokevirtual java.net.URL.getPort:()I
            putfield sun.net.www.protocol.https.HttpsClient.port:I
        12: .line 260
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.port:I
            iconst_m1
            if_icmpne 14
        13: .line 261
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.getDefaultPort:()I
            putfield sun.net.www.protocol.https.HttpsClient.port:I
        14: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* connectTimeout */
            invokevirtual sun.net.www.protocol.https.HttpsClient.setConnectTimeout:(I)V
        15: .line 264
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.openServer:()V
        16: .line 265
            return
        end local 5 // sun.util.logging.PlatformLogger logger
        end local 4 // int connectTimeout
        end local 3 // java.net.Proxy proxy
        end local 2 // java.net.URL url
        end local 1 // javax.net.ssl.SSLSocketFactory sf
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0            this  Lsun/net/www/protocol/https/HttpsClient;
            0   17     1              sf  Ljavax/net/ssl/SSLSocketFactory;
            0   17     2             url  Ljava/net/URL;
            0   17     3           proxy  Ljava/net/Proxy;
            0   17     4  connectTimeout  I
            2   17     5          logger  Lsun/util/logging/PlatformLogger;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      sf              
      url             
      proxy           
      connectTimeout  

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Lsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 274
            aload 0 /* sf */
            aload 1 /* url */
            aload 2 /* hv */
            iconst_1
            aload 3 /* httpuc */
            invokestatic sun.net.www.protocol.https.HttpsClient.New:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;ZLsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
            areturn
        end local 3 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0      sf  Ljavax/net/ssl/SSLSocketFactory;
            0    1     1     url  Ljava/net/URL;
            0    1     2      hv  Ljavax/net/ssl/HostnameVerifier;
            0    1     3  httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      sf      
      url     
      hv      
      httpuc  

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, boolean, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;ZLsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // boolean useCache
        start local 4 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 281
            aload 0 /* sf */
            aload 1 /* url */
            aload 2 /* hv */
            aconst_null
            iconst_m1
            iload 3 /* useCache */
            aload 4 /* httpuc */
            invokestatic sun.net.www.protocol.https.HttpsClient.New:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;IZLsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
            areturn
        end local 4 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 3 // boolean useCache
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0        sf  Ljavax/net/ssl/SSLSocketFactory;
            0    1     1       url  Ljava/net/URL;
            0    1     2        hv  Ljavax/net/ssl/HostnameVerifier;
            0    1     3  useCache  Z
            0    1     4    httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      sf        
      url       
      hv        
      useCache  
      httpuc    

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.lang.String, int, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;ILsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // java.lang.String proxyHost
        start local 4 // int proxyPort
        start local 5 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 291
            aload 0 /* sf */
            aload 1 /* url */
            aload 2 /* hv */
            aload 3 /* proxyHost */
            iload 4 /* proxyPort */
            iconst_1
            aload 5 /* httpuc */
            invokestatic sun.net.www.protocol.https.HttpsClient.New:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;IZLsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
            areturn
        end local 5 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 4 // int proxyPort
        end local 3 // java.lang.String proxyHost
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0         sf  Ljavax/net/ssl/SSLSocketFactory;
            0    1     1        url  Ljava/net/URL;
            0    1     2         hv  Ljavax/net/ssl/HostnameVerifier;
            0    1     3  proxyHost  Ljava/lang/String;
            0    1     4  proxyPort  I
            0    1     5     httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      sf         
      url        
      hv         
      proxyHost  
      proxyPort  
      httpuc     

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.lang.String, int, boolean, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;IZLsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=8, locals=7, args_size=7
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // java.lang.String proxyHost
        start local 4 // int proxyPort
        start local 5 // boolean useCache
        start local 6 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 298
            aload 0 /* sf */
            aload 1 /* url */
            aload 2 /* hv */
            aload 3 /* proxyHost */
            iload 4 /* proxyPort */
            iload 5 /* useCache */
            iconst_m1
         1: .line 299
            aload 6 /* httpuc */
         2: .line 298
            invokestatic sun.net.www.protocol.https.HttpsClient.New:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;IZILsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
            areturn
        end local 6 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 5 // boolean useCache
        end local 4 // int proxyPort
        end local 3 // java.lang.String proxyHost
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0         sf  Ljavax/net/ssl/SSLSocketFactory;
            0    3     1        url  Ljava/net/URL;
            0    3     2         hv  Ljavax/net/ssl/HostnameVerifier;
            0    3     3  proxyHost  Ljava/lang/String;
            0    3     4  proxyPort  I
            0    3     5   useCache  Z
            0    3     6     httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      sf         
      url        
      hv         
      proxyHost  
      proxyPort  
      useCache   
      httpuc     

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.lang.String, int, boolean, int, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/lang/String;IZILsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=8, args_size=8
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // java.lang.String proxyHost
        start local 4 // int proxyPort
        start local 5 // boolean useCache
        start local 6 // int connectTimeout
        start local 7 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 307
            aload 0 /* sf */
            aload 1 /* url */
            aload 2 /* hv */
         1: .line 308
            aload 3 /* proxyHost */
            ifnonnull 2
            aconst_null
            goto 3
         2: .line 309
      StackMap locals: javax.net.ssl.SSLSocketFactory java.net.URL javax.net.ssl.HostnameVerifier java.lang.String int int int sun.net.www.protocol.http.HttpURLConnection
      StackMap stack: javax.net.ssl.SSLSocketFactory java.net.URL javax.net.ssl.HostnameVerifier
            aload 3 /* proxyHost */
            iload 4 /* proxyPort */
            ldc "https"
            invokestatic sun.net.www.http.HttpClient.newHttpProxy:(Ljava/lang/String;ILjava/lang/String;)Ljava/net/Proxy;
         3: .line 310
      StackMap locals: javax.net.ssl.SSLSocketFactory java.net.URL javax.net.ssl.HostnameVerifier java.lang.String int int int sun.net.www.protocol.http.HttpURLConnection
      StackMap stack: javax.net.ssl.SSLSocketFactory java.net.URL javax.net.ssl.HostnameVerifier java.net.Proxy
            iload 5 /* useCache */
            iload 6 /* connectTimeout */
            aload 7 /* httpuc */
         4: .line 307
            invokestatic sun.net.www.protocol.https.HttpsClient.New:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/net/Proxy;ZILsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
            areturn
        end local 7 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 6 // int connectTimeout
        end local 5 // boolean useCache
        end local 4 // int proxyPort
        end local 3 // java.lang.String proxyHost
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0              sf  Ljavax/net/ssl/SSLSocketFactory;
            0    5     1             url  Ljava/net/URL;
            0    5     2              hv  Ljavax/net/ssl/HostnameVerifier;
            0    5     3       proxyHost  Ljava/lang/String;
            0    5     4       proxyPort  I
            0    5     5        useCache  Z
            0    5     6  connectTimeout  I
            0    5     7          httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      sf              
      url             
      hv              
      proxyHost       
      proxyPort       
      useCache        
      connectTimeout  
      httpuc          

  static sun.net.www.http.HttpClient New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.net.Proxy, boolean, int, sun.net.www.protocol.http.HttpURLConnection);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljavax/net/ssl/HostnameVerifier;Ljava/net/Proxy;ZILsun/net/www/protocol/http/HttpURLConnection;)Lsun/net/www/http/HttpClient;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=10, args_size=7
        start local 0 // javax.net.ssl.SSLSocketFactory sf
        start local 1 // java.net.URL url
        start local 2 // javax.net.ssl.HostnameVerifier hv
        start local 3 // java.net.Proxy p
        start local 4 // boolean useCache
        start local 5 // int connectTimeout
        start local 6 // sun.net.www.protocol.http.HttpURLConnection httpuc
         0: .line 318
            aload 3 /* p */
            ifnonnull 2
         1: .line 319
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            astore 3 /* p */
         2: .line 321
      StackMap locals:
      StackMap stack:
            invokestatic sun.net.www.protocol.http.HttpURLConnection.getHttpLogger:()Lsun/util/logging/PlatformLogger;
            astore 7 /* logger */
        start local 7 // sun.util.logging.PlatformLogger logger
         3: .line 322
            aload 7 /* logger */
            getstatic sun.util.logging.PlatformLogger$Level.FINEST:Lsun/util/logging/PlatformLogger$Level;
            invokevirtual sun.util.logging.PlatformLogger.isLoggable:(Lsun/util/logging/PlatformLogger$Level;)Z
            ifeq 7
         4: .line 323
            aload 7 /* logger */
            new java.lang.StringBuilder
            dup
            ldc "Looking for HttpClient for URL "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* url */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         5: .line 324
            ldc " and proxy value of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* p */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 323
            invokevirtual sun.util.logging.PlatformLogger.finest:(Ljava/lang/String;)V
         7: .line 326
      StackMap locals: sun.util.logging.PlatformLogger
      StackMap stack:
            aconst_null
            astore 8 /* ret */
        start local 8 // sun.net.www.protocol.https.HttpsClient ret
         8: .line 327
            iload 4 /* useCache */
            ifeq 40
         9: .line 329
            getstatic sun.net.www.protocol.https.HttpsClient.kac:Lsun/net/www/http/KeepAliveCache;
            aload 1 /* url */
            aload 0 /* sf */
            invokevirtual sun.net.www.http.KeepAliveCache.get:(Ljava/net/URL;Ljava/lang/Object;)Lsun/net/www/http/HttpClient;
            checkcast sun.net.www.protocol.https.HttpsClient
            astore 8 /* ret */
        10: .line 330
            aload 8 /* ret */
            ifnull 15
            aload 6 /* httpuc */
            ifnull 15
        11: .line 331
            aload 6 /* httpuc */
            invokevirtual sun.net.www.protocol.http.HttpURLConnection.streaming:()Z
            ifeq 15
        12: .line 332
            aload 6 /* httpuc */
            invokevirtual sun.net.www.protocol.http.HttpURLConnection.getRequestMethod:()Ljava/lang/String;
            ldc "POST"
            if_acmpne 15
        13: .line 333
            aload 8 /* ret */
            invokevirtual sun.net.www.protocol.https.HttpsClient.available:()Z
            ifne 15
        14: .line 334
            aconst_null
            astore 8 /* ret */
        15: .line 337
      StackMap locals: sun.net.www.protocol.https.HttpsClient
      StackMap stack:
            aload 8 /* ret */
            ifnull 40
        16: .line 338
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            ifnull 17
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            aload 3 /* p */
            invokevirtual java.net.Proxy.equals:(Ljava/lang/Object;)Z
            ifne 18
        17: .line 339
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            ifnonnull 30
            aload 3 /* p */
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpne 30
        18: .line 340
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            dup
            astore 9
            monitorenter
        19: .line 341
            aload 8 /* ret */
            iconst_1
            putfield sun.net.www.protocol.https.HttpsClient.cachedHttpClient:Z
        20: .line 342
            getstatic sun.net.www.protocol.https.HttpsClient.$assertionsDisabled:Z
            ifne 21
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.inCache:Z
            ifne 21
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        21: .line 343
      StackMap locals: sun.net.www.protocol.https.HttpsClient
      StackMap stack:
            aload 8 /* ret */
            iconst_0
            putfield sun.net.www.protocol.https.HttpsClient.inCache:Z
        22: .line 344
            aload 6 /* httpuc */
            ifnull 24
            aload 8 /* ret */
            invokevirtual sun.net.www.protocol.https.HttpsClient.needsTunneling:()Z
            ifeq 24
        23: .line 345
            aload 6 /* httpuc */
            getstatic sun.net.www.protocol.http.HttpURLConnection$TunnelState.TUNNELING:Lsun/net/www/protocol/http/HttpURLConnection$TunnelState;
            invokevirtual sun.net.www.protocol.http.HttpURLConnection.setTunnelState:(Lsun/net/www/protocol/http/HttpURLConnection$TunnelState;)V
        24: .line 346
      StackMap locals:
      StackMap stack:
            aload 7 /* logger */
            getstatic sun.util.logging.PlatformLogger$Level.FINEST:Lsun/util/logging/PlatformLogger$Level;
            invokevirtual sun.util.logging.PlatformLogger.isLoggable:(Lsun/util/logging/PlatformLogger$Level;)Z
            ifeq 26
        25: .line 347
            aload 7 /* logger */
            new java.lang.StringBuilder
            dup
            ldc "KeepAlive stream retrieved from the cache, "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* ret */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual sun.util.logging.PlatformLogger.finest:(Ljava/lang/String;)V
        26: .line 340
      StackMap locals:
      StackMap stack:
            aload 9
            monitorexit
        27: goto 40
      StackMap locals:
      StackMap stack: java.lang.Throwable
        28: aload 9
            monitorexit
        29: athrow
        30: .line 355
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            dup
            astore 9
            monitorenter
        31: .line 356
            aload 7 /* logger */
            getstatic sun.util.logging.PlatformLogger$Level.FINEST:Lsun/util/logging/PlatformLogger$Level;
            invokevirtual sun.util.logging.PlatformLogger.isLoggable:(Lsun/util/logging/PlatformLogger$Level;)Z
            ifeq 33
        32: .line 357
            aload 7 /* logger */
            new java.lang.StringBuilder
            dup
            ldc "Not returning this connection to cache: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* ret */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual sun.util.logging.PlatformLogger.finest:(Ljava/lang/String;)V
        33: .line 359
      StackMap locals: sun.net.www.protocol.https.HttpsClient
      StackMap stack:
            aload 8 /* ret */
            iconst_0
            putfield sun.net.www.protocol.https.HttpsClient.inCache:Z
        34: .line 360
            aload 8 /* ret */
            invokevirtual sun.net.www.protocol.https.HttpsClient.closeServer:()V
        35: .line 355
            aload 9
            monitorexit
        36: goto 39
      StackMap locals:
      StackMap stack: java.lang.Throwable
        37: aload 9
            monitorexit
        38: athrow
        39: .line 362
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 8 /* ret */
        40: .line 366
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            ifnonnull 43
        41: .line 367
            new sun.net.www.protocol.https.HttpsClient
            dup
            aload 0 /* sf */
            aload 1 /* url */
            aload 3 /* p */
            iload 5 /* connectTimeout */
            invokespecial sun.net.www.protocol.https.HttpsClient.<init>:(Ljavax/net/ssl/SSLSocketFactory;Ljava/net/URL;Ljava/net/Proxy;I)V
            astore 8 /* ret */
        42: .line 368
            goto 50
        43: .line 369
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 9 /* security */
        start local 9 // java.lang.SecurityManager security
        44: .line 370
            aload 9 /* security */
            ifnull 49
        45: .line 371
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            getstatic java.net.Proxy.NO_PROXY:Ljava/net/Proxy;
            if_acmpeq 46
            aload 8 /* ret */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            ifnonnull 48
        46: .line 372
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 9 /* security */
            aload 1 /* url */
            invokevirtual java.net.URL.getHost:()Ljava/lang/String;
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
            aload 1 /* url */
            invokevirtual java.net.URL.getPort:()I
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        47: .line 373
            goto 49
        48: .line 374
      StackMap locals:
      StackMap stack:
            aload 9 /* security */
            aload 1 /* url */
            invokevirtual java.net.URL.getHost:()Ljava/lang/String;
            aload 1 /* url */
            invokevirtual java.net.URL.getPort:()I
            invokevirtual java.lang.SecurityManager.checkConnect:(Ljava/lang/String;I)V
        49: .line 377
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            aload 1 /* url */
            putfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
        end local 9 // java.lang.SecurityManager security
        50: .line 379
      StackMap locals:
      StackMap stack:
            aload 8 /* ret */
            aload 2 /* hv */
            invokevirtual sun.net.www.protocol.https.HttpsClient.setHostnameVerifier:(Ljavax/net/ssl/HostnameVerifier;)V
        51: .line 381
            aload 8 /* ret */
            areturn
        end local 8 // sun.net.www.protocol.https.HttpsClient ret
        end local 7 // sun.util.logging.PlatformLogger logger
        end local 6 // sun.net.www.protocol.http.HttpURLConnection httpuc
        end local 5 // int connectTimeout
        end local 4 // boolean useCache
        end local 3 // java.net.Proxy p
        end local 2 // javax.net.ssl.HostnameVerifier hv
        end local 1 // java.net.URL url
        end local 0 // javax.net.ssl.SSLSocketFactory sf
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   52     0              sf  Ljavax/net/ssl/SSLSocketFactory;
            0   52     1             url  Ljava/net/URL;
            0   52     2              hv  Ljavax/net/ssl/HostnameVerifier;
            0   52     3               p  Ljava/net/Proxy;
            0   52     4        useCache  Z
            0   52     5  connectTimeout  I
            0   52     6          httpuc  Lsun/net/www/protocol/http/HttpURLConnection;
            3   52     7          logger  Lsun/util/logging/PlatformLogger;
            8   52     8             ret  Lsun/net/www/protocol/https/HttpsClient;
           44   50     9        security  Ljava/lang/SecurityManager;
      Exception table:
        from    to  target  type
          19    27      28  any
          28    29      28  any
          31    36      37  any
          37    38      37  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      sf              
      url             
      hv              
      p               
      useCache        
      connectTimeout  
      httpuc          

  void setHostnameVerifier(javax.net.ssl.HostnameVerifier);
    descriptor: (Ljavax/net/ssl/HostnameVerifier;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.HostnameVerifier hv
         0: .line 386
            aload 0 /* this */
            aload 1 /* hv */
            putfield sun.net.www.protocol.https.HttpsClient.hv:Ljavax/net/ssl/HostnameVerifier;
         1: .line 387
            return
        end local 1 // javax.net.ssl.HostnameVerifier hv
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/www/protocol/https/HttpsClient;
            0    2     1    hv  Ljavax/net/ssl/HostnameVerifier;
    MethodParameters:
      Name  Flags
      hv    

  void setSSLSocketFactory(javax.net.ssl.SSLSocketFactory);
    descriptor: (Ljavax/net/ssl/SSLSocketFactory;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.SSLSocketFactory sf
         0: .line 390
            aload 0 /* this */
            aload 1 /* sf */
            putfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
         1: .line 391
            return
        end local 1 // javax.net.ssl.SSLSocketFactory sf
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/www/protocol/https/HttpsClient;
            0    2     1    sf  Ljavax/net/ssl/SSLSocketFactory;
    MethodParameters:
      Name  Flags
      sf    

  javax.net.ssl.SSLSocketFactory getSSLSocketFactory();
    descriptor: ()Ljavax/net/ssl/SSLSocketFactory;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 394
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;

  protected java.net.Socket createSocket();
    descriptor: ()Ljava/net/Socket;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 405
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
            invokevirtual javax.net.ssl.SSLSocketFactory.createSocket:()Ljava/net/Socket;
         1: areturn
         2: .line 406
      StackMap locals:
      StackMap stack: java.net.SocketException
            astore 1 /* se */
        start local 1 // java.net.SocketException se
         3: .line 413
            aload 1 /* se */
            invokevirtual java.net.SocketException.getCause:()Ljava/lang/Throwable;
            astore 2 /* t */
        start local 2 // java.lang.Throwable t
         4: .line 414
            aload 2 /* t */
            ifnull 6
            aload 2 /* t */
            instanceof java.lang.UnsupportedOperationException
            ifeq 6
         5: .line 415
            aload 0 /* this */
            invokespecial sun.net.www.http.HttpClient.createSocket:()Ljava/net/Socket;
            areturn
         6: .line 417
      StackMap locals: java.net.SocketException java.lang.Throwable
      StackMap stack:
            aload 1 /* se */
            athrow
        end local 2 // java.lang.Throwable t
        end local 1 // java.net.SocketException se
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/net/www/protocol/https/HttpsClient;
            3    7     1    se  Ljava/net/SocketException;
            4    7     2     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.net.SocketException
    Exceptions:
      throws java.io.IOException

  public boolean needsTunneling();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 425
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            ifnull 3
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            getstatic java.net.Proxy$Type.DIRECT:Ljava/net/Proxy$Type;
            if_acmpeq 3
         1: .line 426
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpeq 3
         2: .line 425
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/protocol/https/HttpsClient;

  public void afterConnect();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 431
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.isCachedConnection:()Z
            ifne 57
         1: .line 432
            aconst_null
            astore 1 /* s */
        start local 1 // javax.net.ssl.SSLSocket s
         2: .line 433
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
            astore 2 /* factory */
        start local 2 // javax.net.ssl.SSLSocketFactory factory
         3: .line 435
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
            instanceof javax.net.ssl.SSLSocket
            ifne 8
         4: .line 436
            aload 2 /* factory */
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
         5: .line 437
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.host:Ljava/lang/String;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.port:I
            iconst_1
         6: .line 436
            invokevirtual javax.net.ssl.SSLSocketFactory.createSocket:(Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            astore 1 /* s */
         7: .line 438
            goto 17
         8: .line 439
      StackMap locals: javax.net.ssl.SSLSocket javax.net.ssl.SSLSocketFactory
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            astore 1 /* s */
         9: .line 440
            aload 1 /* s */
            instanceof sun.security.ssl.SSLSocketImpl
            ifeq 17
        10: .line 441
            aload 1 /* s */
            checkcast sun.security.ssl.SSLSocketImpl
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.host:Ljava/lang/String;
            invokevirtual sun.security.ssl.SSLSocketImpl.setHost:(Ljava/lang/String;)V
        11: .line 444
            goto 17
      StackMap locals:
      StackMap stack: java.io.IOException
        12: astore 3 /* ex */
        start local 3 // java.io.IOException ex
        13: .line 449
            aload 2 /* factory */
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.host:Ljava/lang/String;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.port:I
            invokevirtual javax.net.ssl.SSLSocketFactory.createSocket:(Ljava/lang/String;I)Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            astore 1 /* s */
        14: .line 450
            goto 17
      StackMap locals: sun.net.www.protocol.https.HttpsClient javax.net.ssl.SSLSocket javax.net.ssl.SSLSocketFactory java.io.IOException
      StackMap stack: java.io.IOException
        15: pop
        16: .line 451
            aload 3 /* ex */
            athrow
        end local 3 // java.io.IOException ex
        17: .line 460
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.getProtocols:()[Ljava/lang/String;
            astore 3 /* protocols */
        start local 3 // java.lang.String[] protocols
        18: .line 461
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.getCipherSuites:()[Ljava/lang/String;
            astore 4 /* ciphers */
        start local 4 // java.lang.String[] ciphers
        19: .line 462
            aload 3 /* protocols */
            ifnull 21
        20: .line 463
            aload 1 /* s */
            aload 3 /* protocols */
            invokevirtual javax.net.ssl.SSLSocket.setEnabledProtocols:([Ljava/lang/String;)V
        21: .line 465
      StackMap locals: java.lang.String[] java.lang.String[]
      StackMap stack:
            aload 4 /* ciphers */
            ifnull 23
        22: .line 466
            aload 1 /* s */
            aload 4 /* ciphers */
            invokevirtual javax.net.ssl.SSLSocket.setEnabledCipherSuites:([Ljava/lang/String;)V
        23: .line 468
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            aload 0 /* this */
            invokevirtual javax.net.ssl.SSLSocket.addHandshakeCompletedListener:(Ljavax/net/ssl/HandshakeCompletedListener;)V
        24: .line 518
            iconst_1
            istore 5 /* needToCheckSpoofing */
        start local 5 // boolean needToCheckSpoofing
        25: .line 520
            aload 1 /* s */
            invokevirtual javax.net.ssl.SSLSocket.getSSLParameters:()Ljavax/net/ssl/SSLParameters;
            invokevirtual javax.net.ssl.SSLParameters.getEndpointIdentificationAlgorithm:()Ljava/lang/String;
        26: .line 519
            astore 6 /* identification */
        start local 6 // java.lang.String identification
        27: .line 521
            aload 6 /* identification */
            ifnull 31
            aload 6 /* identification */
            invokevirtual java.lang.String.length:()I
            ifeq 31
        28: .line 522
            aload 6 /* identification */
            ldc "HTTPS"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 44
        29: .line 526
            iconst_0
            istore 5 /* needToCheckSpoofing */
        30: .line 529
            goto 44
        31: .line 530
      StackMap locals: int java.lang.String
      StackMap stack:
            iconst_0
            istore 7 /* isDefaultHostnameVerifier */
        start local 7 // boolean isDefaultHostnameVerifier
        32: .line 535
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.hv:Ljavax/net/ssl/HostnameVerifier;
            ifnull 38
        33: .line 536
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.hv:Ljavax/net/ssl/HostnameVerifier;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getCanonicalName:()Ljava/lang/String;
            astore 8 /* canonicalName */
        start local 8 // java.lang.String canonicalName
        34: .line 537
            aload 8 /* canonicalName */
            ifnull 39
        35: .line 538
            aload 8 /* canonicalName */
            ldc "javax.net.ssl.HttpsURLConnection.DefaultHostnameVerifier"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 39
        36: .line 539
            iconst_1
            istore 7 /* isDefaultHostnameVerifier */
        end local 8 // java.lang.String canonicalName
        37: .line 541
            goto 39
        38: .line 545
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 7 /* isDefaultHostnameVerifier */
        39: .line 548
      StackMap locals:
      StackMap stack:
            iload 7 /* isDefaultHostnameVerifier */
            ifeq 44
        40: .line 551
            aload 1 /* s */
            invokevirtual javax.net.ssl.SSLSocket.getSSLParameters:()Ljavax/net/ssl/SSLParameters;
            astore 8 /* paramaters */
        start local 8 // javax.net.ssl.SSLParameters paramaters
        41: .line 552
            aload 8 /* paramaters */
            ldc "HTTPS"
            invokevirtual javax.net.ssl.SSLParameters.setEndpointIdentificationAlgorithm:(Ljava/lang/String;)V
        42: .line 553
            aload 1 /* s */
            aload 8 /* paramaters */
            invokevirtual javax.net.ssl.SSLSocket.setSSLParameters:(Ljavax/net/ssl/SSLParameters;)V
        43: .line 555
            iconst_0
            istore 5 /* needToCheckSpoofing */
        end local 8 // javax.net.ssl.SSLParameters paramaters
        end local 7 // boolean isDefaultHostnameVerifier
        44: .line 559
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            invokevirtual javax.net.ssl.SSLSocket.startHandshake:()V
        45: .line 560
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual javax.net.ssl.SSLSocket.getSession:()Ljavax/net/ssl/SSLSession;
            putfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
        46: .line 562
            aload 0 /* this */
            aload 1 /* s */
            putfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
        47: .line 564
            aload 0 /* this */
            new java.io.PrintStream
            dup
        48: .line 565
            new java.io.BufferedOutputStream
            dup
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
            invokevirtual java.net.Socket.getOutputStream:()Ljava/io/OutputStream;
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;)V
        49: .line 566
            iconst_0
            getstatic sun.net.www.protocol.https.HttpsClient.encoding:Ljava/lang/String;
            invokespecial java.io.PrintStream.<init>:(Ljava/io/OutputStream;ZLjava/lang/String;)V
        50: .line 564
            putfield sun.net.www.protocol.https.HttpsClient.serverOutput:Ljava/io/PrintStream;
        51: .line 567
            goto 54
      StackMap locals:
      StackMap stack: java.io.UnsupportedEncodingException
        52: pop
        53: .line 568
            new java.lang.InternalError
            dup
            new java.lang.StringBuilder
            dup
            getstatic sun.net.www.protocol.https.HttpsClient.encoding:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " encoding not found"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
        54: .line 572
      StackMap locals:
      StackMap stack:
            iload 5 /* needToCheckSpoofing */
            ifeq 58
        55: .line 573
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.hv:Ljavax/net/ssl/HostnameVerifier;
            invokevirtual sun.net.www.protocol.https.HttpsClient.checkURLSpoofing:(Ljavax/net/ssl/HostnameVerifier;)V
        end local 6 // java.lang.String identification
        end local 5 // boolean needToCheckSpoofing
        end local 4 // java.lang.String[] ciphers
        end local 3 // java.lang.String[] protocols
        end local 2 // javax.net.ssl.SSLSocketFactory factory
        end local 1 // javax.net.ssl.SSLSocket s
        56: .line 575
            goto 58
        57: .line 579
      StackMap locals: sun.net.www.protocol.https.HttpsClient
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            invokevirtual javax.net.ssl.SSLSocket.getSession:()Ljavax/net/ssl/SSLSession;
            putfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
        58: .line 581
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0   59     0                       this  Lsun/net/www/protocol/https/HttpsClient;
            2   56     1                          s  Ljavax/net/ssl/SSLSocket;
            3   56     2                    factory  Ljavax/net/ssl/SSLSocketFactory;
           13   17     3                         ex  Ljava/io/IOException;
           18   56     3                  protocols  [Ljava/lang/String;
           19   56     4                    ciphers  [Ljava/lang/String;
           25   56     5        needToCheckSpoofing  Z
           27   56     6             identification  Ljava/lang/String;
           32   44     7  isDefaultHostnameVerifier  Z
           34   37     8              canonicalName  Ljava/lang/String;
           41   44     8                 paramaters  Ljavax/net/ssl/SSLParameters;
      Exception table:
        from    to  target  type
           3    11      12  Class java.io.IOException
          13    14      15  Class java.io.IOException
          47    51      52  Class java.io.UnsupportedEncodingException
    Exceptions:
      throws java.io.IOException, java.net.UnknownHostException

  private void checkURLSpoofing(javax.net.ssl.HostnameVerifier);
    descriptor: (Ljavax/net/ssl/HostnameVerifier;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.HostnameVerifier hostnameVerifier
         0: .line 590
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
            invokevirtual java.net.URL.getHost:()Ljava/lang/String;
            astore 2 /* host */
        start local 2 // java.lang.String host
         1: .line 593
            aload 2 /* host */
            ifnull 3
            aload 2 /* host */
            ldc "["
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 3
            aload 2 /* host */
            ldc "]"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 3
         2: .line 594
            aload 2 /* host */
            iconst_1
            aload 2 /* host */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 2 /* host */
         3: .line 597
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            astore 3 /* peerCerts */
        start local 3 // java.security.cert.Certificate[] peerCerts
         4: .line 598
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getCipherSuite:()Ljava/lang/String;
            astore 4 /* cipher */
        start local 4 // java.lang.String cipher
         5: .line 601
            iconst_1
         6: .line 600
            invokestatic sun.security.util.HostnameChecker.getInstance:(B)Lsun/security/util/HostnameChecker;
            astore 5 /* checker */
        start local 5 // sun.security.util.HostnameChecker checker
         7: .line 604
            aload 4 /* cipher */
            ldc "TLS_KRB5"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 10
         8: .line 605
            aload 2 /* host */
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.getPeerPrincipal:()Ljava/security/Principal;
            invokestatic sun.security.util.HostnameChecker.match:(Ljava/lang/String;Ljava/security/Principal;)Z
            ifne 17
         9: .line 606
            new javax.net.ssl.SSLPeerUnverifiedException
            dup
            ldc "Hostname checker failed for Kerberos"
            invokespecial javax.net.ssl.SSLPeerUnverifiedException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 612
      StackMap locals: java.security.cert.Certificate[] java.lang.String sun.security.util.HostnameChecker
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificates:()[Ljava/security/cert/Certificate;
            astore 3 /* peerCerts */
        11: .line 615
            aload 3 /* peerCerts */
            iconst_0
            aaload
            instanceof java.security.cert.X509Certificate
        12: .line 616
            ifeq 15
        13: .line 617
            aload 3 /* peerCerts */
            iconst_0
            aaload
            checkcast java.security.cert.X509Certificate
            astore 6 /* peerCert */
        start local 6 // java.security.cert.X509Certificate peerCert
        14: .line 618
            goto 16
        end local 6 // java.security.cert.X509Certificate peerCert
        15: .line 619
      StackMap locals:
      StackMap stack:
            new javax.net.ssl.SSLPeerUnverifiedException
            dup
            ldc ""
            invokespecial javax.net.ssl.SSLPeerUnverifiedException.<init>:(Ljava/lang/String;)V
            athrow
        start local 6 // java.security.cert.X509Certificate peerCert
        16: .line 621
      StackMap locals: java.security.cert.X509Certificate
      StackMap stack:
            aload 5 /* checker */
            aload 2 /* host */
            aload 6 /* peerCert */
            invokevirtual sun.security.util.HostnameChecker.match:(Ljava/lang/String;Ljava/security/cert/X509Certificate;)V
        end local 6 // java.security.cert.X509Certificate peerCert
        17: .line 625
      StackMap locals:
      StackMap stack:
            return
        end local 5 // sun.security.util.HostnameChecker checker
        18: .line 627
      StackMap locals: sun.net.www.protocol.https.HttpsClient javax.net.ssl.HostnameVerifier java.lang.String java.security.cert.Certificate[] java.lang.String
      StackMap stack: javax.net.ssl.SSLPeerUnverifiedException
            pop
            goto 20
        19: .line 634
      StackMap locals:
      StackMap stack: java.security.cert.CertificateException
            pop
        20: .line 638
      StackMap locals:
      StackMap stack:
            aload 4 /* cipher */
            ifnull 22
            aload 4 /* cipher */
            ldc "_anon_"
            invokevirtual java.lang.String.indexOf:(Ljava/lang/String;)I
            iconst_m1
            if_icmpeq 22
        21: .line 639
            return
        22: .line 640
      StackMap locals:
      StackMap stack:
            aload 1 /* hostnameVerifier */
            ifnull 25
        23: .line 641
            aload 1 /* hostnameVerifier */
            aload 2 /* host */
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.HostnameVerifier.verify:(Ljava/lang/String;Ljavax/net/ssl/SSLSession;)Z
            ifeq 25
        24: .line 642
            return
        25: .line 645
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.serverSocket:Ljava/net/Socket;
            invokevirtual java.net.Socket.close:()V
        26: .line 646
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.invalidate:()V
        27: .line 648
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "HTTPS hostname wrong:  should be <"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        28: .line 649
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
            invokevirtual java.net.URL.getHost:()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;
        29: .line 648
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.lang.String cipher
        end local 3 // java.security.cert.Certificate[] peerCerts
        end local 2 // java.lang.String host
        end local 1 // javax.net.ssl.HostnameVerifier hostnameVerifier
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   30     0              this  Lsun/net/www/protocol/https/HttpsClient;
            0   30     1  hostnameVerifier  Ljavax/net/ssl/HostnameVerifier;
            1   30     2              host  Ljava/lang/String;
            4   30     3         peerCerts  [Ljava/security/cert/Certificate;
            5   30     4            cipher  Ljava/lang/String;
            7   18     5           checker  Lsun/security/util/HostnameChecker;
           14   15     6          peerCert  Ljava/security/cert/X509Certificate;
           16   17     6          peerCert  Ljava/security/cert/X509Certificate;
      Exception table:
        from    to  target  type
           5    17      18  Class javax.net.ssl.SSLPeerUnverifiedException
           5    17      19  Class java.security.cert.CertificateException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      hostnameVerifier  

  protected void putInKeepAliveCache();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 654
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.inCache:Z
            ifeq 3
         1: .line 655
            getstatic sun.net.www.protocol.https.HttpsClient.$assertionsDisabled:Z
            ifne 2
            new java.lang.AssertionError
            dup
            ldc "Duplicate put to keep alive cache"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 656
      StackMap locals:
      StackMap stack:
            return
         3: .line 658
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.protocol.https.HttpsClient.inCache:Z
         4: .line 659
            getstatic sun.net.www.protocol.https.HttpsClient.kac:Lsun/net/www/http/KeepAliveCache;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
            aload 0 /* this */
            invokevirtual sun.net.www.http.KeepAliveCache.put:(Ljava/net/URL;Ljava/lang/Object;Lsun/net/www/http/HttpClient;)V
         5: .line 660
            return
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/net/www/protocol/https/HttpsClient;

  public void closeIdleConnection();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 667
            getstatic sun.net.www.protocol.https.HttpsClient.kac:Lsun/net/www/http/KeepAliveCache;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.url:Ljava/net/URL;
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;
            invokevirtual sun.net.www.http.KeepAliveCache.get:(Ljava/net/URL;Ljava/lang/Object;)Lsun/net/www/http/HttpClient;
            astore 1 /* http */
        start local 1 // sun.net.www.http.HttpClient http
         1: .line 668
            aload 1 /* http */
            ifnull 3
         2: .line 669
            aload 1 /* http */
            invokevirtual sun.net.www.http.HttpClient.closeServer:()V
         3: .line 671
      StackMap locals: sun.net.www.http.HttpClient
      StackMap stack:
            return
        end local 1 // sun.net.www.http.HttpClient http
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/protocol/https/HttpsClient;
            1    4     1  http  Lsun/net/www/http/HttpClient;

  java.lang.String getCipherSuite();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 677
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getCipherSuite:()Ljava/lang/String;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;

  public java.security.cert.Certificate[] getLocalCertificates();
    descriptor: ()[Ljava/security/cert/Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 685
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getLocalCertificates:()[Ljava/security/cert/Certificate;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;

  java.security.cert.Certificate[] getServerCertificates();
    descriptor: ()[Ljava/security/cert/Certificate;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 696
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificates:()[Ljava/security/cert/Certificate;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  javax.security.cert.X509Certificate[] getServerCertificateChain();
    descriptor: ()[Ljavax/security/cert/X509Certificate;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 706
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificateChain:()[Ljavax/security/cert/X509Certificate;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/https/HttpsClient;
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  java.security.Principal getPeerPrincipal();
    descriptor: ()Ljava/security/Principal;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 719
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerPrincipal:()Ljava/security/Principal;
            astore 1 /* principal */
        start local 1 // java.security.Principal principal
         1: .line 720
            goto 6
        end local 1 // java.security.Principal principal
      StackMap locals:
      StackMap stack: java.lang.AbstractMethodError
         2: pop
         3: .line 724
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificates:()[Ljava/security/cert/Certificate;
         4: .line 723
            astore 2 /* certs */
        start local 2 // java.security.cert.Certificate[] certs
         5: .line 725
            aload 2 /* certs */
            iconst_0
            aaload
            checkcast java.security.cert.X509Certificate
            invokevirtual java.security.cert.X509Certificate.getSubjectX500Principal:()Ljavax/security/auth/x500/X500Principal;
            astore 1 /* principal */
        end local 2 // java.security.cert.Certificate[] certs
        start local 1 // java.security.Principal principal
         6: .line 727
      StackMap locals: java.security.Principal
      StackMap stack:
            aload 1 /* principal */
            areturn
        end local 1 // java.security.Principal principal
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/net/www/protocol/https/HttpsClient;
            1    2     1  principal  Ljava/security/Principal;
            6    7     1  principal  Ljava/security/Principal;
            5    6     2      certs  [Ljava/security/cert/Certificate;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.AbstractMethodError
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  java.security.Principal getLocalPrincipal();
    descriptor: ()Ljava/security/Principal;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 738
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getLocalPrincipal:()Ljava/security/Principal;
            astore 1 /* principal */
        start local 1 // java.security.Principal principal
         1: .line 739
            goto 8
        end local 1 // java.security.Principal principal
      StackMap locals:
      StackMap stack: java.lang.AbstractMethodError
         2: pop
         3: .line 740
            aconst_null
            astore 1 /* principal */
        start local 1 // java.security.Principal principal
         4: .line 744
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getLocalCertificates:()[Ljava/security/cert/Certificate;
         5: .line 743
            astore 2 /* certs */
        start local 2 // java.security.cert.Certificate[] certs
         6: .line 745
            aload 2 /* certs */
            ifnull 8
         7: .line 746
            aload 2 /* certs */
            iconst_0
            aaload
            checkcast java.security.cert.X509Certificate
            invokevirtual java.security.cert.X509Certificate.getSubjectX500Principal:()Ljavax/security/auth/x500/X500Principal;
            astore 1 /* principal */
        end local 2 // java.security.cert.Certificate[] certs
         8: .line 749
      StackMap locals: java.security.Principal
      StackMap stack:
            aload 1 /* principal */
            areturn
        end local 1 // java.security.Principal principal
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lsun/net/www/protocol/https/HttpsClient;
            1    2     1  principal  Ljava/security/Principal;
            4    9     1  principal  Ljava/security/Principal;
            6    8     2      certs  [Ljava/security/cert/Certificate;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.AbstractMethodError

  public void handshakeCompleted(javax.net.ssl.HandshakeCompletedEvent);
    descriptor: (Ljavax/net/ssl/HandshakeCompletedEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.www.protocol.https.HttpsClient this
        start local 1 // javax.net.ssl.HandshakeCompletedEvent event
         0: .line 762
            aload 0 /* this */
            aload 1 /* event */
            invokevirtual javax.net.ssl.HandshakeCompletedEvent.getSession:()Ljavax/net/ssl/SSLSession;
            putfield sun.net.www.protocol.https.HttpsClient.session:Ljavax/net/ssl/SSLSession;
         1: .line 763
            return
        end local 1 // javax.net.ssl.HandshakeCompletedEvent event
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/net/www/protocol/https/HttpsClient;
            0    2     1  event  Ljavax/net/ssl/HandshakeCompletedEvent;
    MethodParameters:
       Name  Flags
      event  

  public java.lang.String getProxyHostUsed();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 771
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.https.HttpsClient.needsTunneling:()Z
            ifne 2
         1: .line 772
            aconst_null
            areturn
         2: .line 774
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial sun.net.www.http.HttpClient.getProxyHostUsed:()Ljava/lang/String;
            areturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/net/www/protocol/https/HttpsClient;

  public int getProxyPortUsed();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.https.HttpsClient this
         0: .line 784
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            ifnull 2
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            getstatic java.net.Proxy$Type.DIRECT:Ljava/net/Proxy$Type;
            if_acmpeq 2
         1: .line 785
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            invokevirtual java.net.Proxy.type:()Ljava/net/Proxy$Type;
            getstatic java.net.Proxy$Type.SOCKS:Ljava/net/Proxy$Type;
            if_acmpne 3
      StackMap locals:
      StackMap stack:
         2: iconst_m1
            goto 4
         3: .line 786
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.protocol.https.HttpsClient.proxy:Ljava/net/Proxy;
            invokevirtual java.net.Proxy.address:()Ljava/net/SocketAddress;
            checkcast java.net.InetSocketAddress
            invokevirtual java.net.InetSocketAddress.getPort:()I
         4: .line 784
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 0 // sun.net.www.protocol.https.HttpsClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/net/www/protocol/https/HttpsClient;
}
SourceFile: "HttpsClient.java"
InnerClasses:
  public final Type = java.net.Proxy$Type of java.net.Proxy
  public final TunnelState = sun.net.www.protocol.http.HttpURLConnection$TunnelState of sun.net.www.protocol.http.HttpURLConnection
  public final Level = sun.util.logging.PlatformLogger$Level of sun.util.logging.PlatformLogger