diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-03-18 16:57:30 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-03-18 16:57:30 -0700 |
commit | b7fe0a72d7d3fed87adf872883d4d6d95b17069f (patch) | |
tree | aea04c65769a1d9e3ca6fde36a7d23bd91dbeb98 | |
parent | 4e30c8f9f80e5bd40fd8f018760b01a80b16b8c3 (diff) | |
parent | 069490a5ca2fd1988d29daf45d892f47ad665115 (diff) | |
download | external_apache-http-b7fe0a72d7d3fed87adf872883d4d6d95b17069f.zip external_apache-http-b7fe0a72d7d3fed87adf872883d4d6d95b17069f.tar.gz external_apache-http-b7fe0a72d7d3fed87adf872883d4d6d95b17069f.tar.bz2 |
Merge commit 'remotes/korg/cupcake' into cupcake_to_master
-rw-r--r-- | src/org/apache/http/conn/ssl/SSLSocketFactory.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/org/apache/http/conn/ssl/SSLSocketFactory.java b/src/org/apache/http/conn/ssl/SSLSocketFactory.java index 498b43e..1be6c3a 100644 --- a/src/org/apache/http/conn/ssl/SSLSocketFactory.java +++ b/src/org/apache/http/conn/ssl/SSLSocketFactory.java @@ -217,6 +217,19 @@ public class SSLSocketFactory implements LayeredSocketFactory { } /** + * Constructs an HttpClient SSLSocketFactory backed by the given JSSE + * SSLSocketFactory. + * + * @hide + */ + public SSLSocketFactory(javax.net.ssl.SSLSocketFactory socketfactory) { + super(); + this.sslcontext = null; + this.socketfactory = socketfactory; + this.nameResolver = null; + } + + /** * Creates the default SSL socket factory. * This constructor is used exclusively to instantiate the factory for * {@link #getSocketFactory getSocketFactory}. |