summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2013-09-10 18:50:09 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-09-10 18:50:10 +0000
commit4bdf0c11f7c6ec7e6310a579b40e7efd03baa94d (patch)
tree8ad2449ee581d15a30db66a19fa8bb8f6a20af55
parentafcea7f897b0969bdb2fa91459f76031ab35721c (diff)
parent0c4b35cdf7073c4066eacd31c3c8679d00413cf3 (diff)
downloadandroid_external_apache-http-4bdf0c11f7c6ec7e6310a579b40e7efd03baa94d.tar.gz
android_external_apache-http-4bdf0c11f7c6ec7e6310a579b40e7efd03baa94d.tar.bz2
android_external_apache-http-4bdf0c11f7c6ec7e6310a579b40e7efd03baa94d.zip
Merge "Do not initialize SSLSocketFactory too early"
-rw-r--r--src/org/apache/http/conn/ssl/SSLSocketFactory.java19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/org/apache/http/conn/ssl/SSLSocketFactory.java b/src/org/apache/http/conn/ssl/SSLSocketFactory.java
index 1be6c3a..9195b4f 100644
--- a/src/org/apache/http/conn/ssl/SSLSocketFactory.java
+++ b/src/org/apache/http/conn/ssl/SSLSocketFactory.java
@@ -150,19 +150,26 @@ public class SSLSocketFactory implements LayeredSocketFactory {
public static final X509HostnameVerifier STRICT_HOSTNAME_VERIFIER
= new StrictHostnameVerifier();
- /**
- * The factory using the default JVM settings for secure connections.
+
+ /*
+ * Put defaults into holder class to avoid class preloading creating an
+ * instance of the classes referenced.
*/
- private static final SSLSocketFactory DEFAULT_FACTORY = new SSLSocketFactory();
-
+ private static class NoPreloadHolder {
+ /**
+ * The factory using the default JVM settings for secure connections.
+ */
+ private static final SSLSocketFactory DEFAULT_FACTORY = new SSLSocketFactory();
+ }
+
/**
* Gets an singleton instance of the SSLProtocolSocketFactory.
* @return a SSLProtocolSocketFactory
*/
public static SSLSocketFactory getSocketFactory() {
- return DEFAULT_FACTORY;
+ return NoPreloadHolder.DEFAULT_FACTORY;
}
-
+
private final SSLContext sslcontext;
private final javax.net.ssl.SSLSocketFactory socketfactory;
private final HostNameResolver nameResolver;