diff options
author | Dan Egnor <egnor@google.com> | 2010-02-10 11:48:08 -0800 |
---|---|---|
committer | Dan Egnor <egnor@google.com> | 2010-02-10 12:37:49 -0800 |
commit | 9d48f97ae59510bac2b91dac2cc22d519cbf1bc7 (patch) | |
tree | 5dee13673d90c85d0be9c75961dec37e580bf8fa /x-net/src | |
parent | 99ecbe3d9ea51cf0a41df20b8308c01eb5a02980 (diff) | |
download | libcore-9d48f97ae59510bac2b91dac2cc22d519cbf1bc7.zip libcore-9d48f97ae59510bac2b91dac2cc22d519cbf1bc7.tar.gz libcore-9d48f97ae59510bac2b91dac2cc22d519cbf1bc7.tar.bz2 |
Add a setHandshakeTimeout() to OpenSSLSocketImpl, which sets
a read timeout that only applies to the SSL handshake step.
Bug: 2362543
Diffstat (limited to 'x-net/src')
-rw-r--r-- | x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java b/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java index d287bbd..8006757 100644 --- a/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java +++ b/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java @@ -68,6 +68,9 @@ public class OpenSSLSocketImpl extends javax.net.ssl.SSLSocket { private ArrayList<HandshakeCompletedListener> listeners; private long ssl_op_no = 0x00000000L; private int timeout = 0; + // BEGIN android-added + private int handshakeTimeout = -1; // -1 = same as timeout; 0 = infinite + // END android-added private InetSocketAddress address; private static final String[] supportedProtocols = new String[] { @@ -298,6 +301,14 @@ public class OpenSSLSocketImpl extends javax.net.ssl.SSLSocket { if (session == null && !sslParameters.getEnableSessionCreation()) { throw new SSLHandshakeException("SSL Session may not be created"); } else { + // BEGIN android-added + // Temporarily use a different timeout for the handshake process + int savedTimeout = timeout; + if (handshakeTimeout >= 0) { + setSoTimeout(handshakeTimeout); + } + // END android-added + Socket socket = this.socket != null ? this.socket : this; int sessionId = session != null ? session.session : 0; boolean reusedSession; @@ -360,6 +371,13 @@ public class OpenSSLSocketImpl extends javax.net.ssl.SSLSocket { throw new SSLException("Not trusted server certificate", e); } } + + // BEGIN android-added + // Restore the original timeout now that the handshake is complete + if (handshakeTimeout >= 0) { + setSoTimeout(savedTimeout); + } + // END android-added } if (listeners != null) { @@ -882,6 +900,18 @@ public class OpenSSLSocketImpl extends javax.net.ssl.SSLSocket { this.timeout = timeout; } + // BEGIN android-added + /** + * Set the handshake timeout on this socket. This timeout is specified in + * milliseconds and will be used only during the handshake process. + * + * @param timeout the handshake timeout value + */ + public synchronized void setHandshakeTimeout(int timeout) throws SocketException { + this.handshakeTimeout = timeout; + } + // END android-added + private native void nativeinterrupt() throws IOException; private native void nativeclose() throws IOException; |