summaryrefslogtreecommitdiffstats
path: root/x-net/src
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-02-22 12:09:51 -0800
committerElliott Hughes <enh@google.com>2010-02-22 12:09:51 -0800
commite2a6f77f112c01109db196d8b19767896ee977ea (patch)
treec18066db46425e09a89b679c3b08153d0480d7e7 /x-net/src
parentcb78ba4051c82075119fd3646922a41e6355151b (diff)
parentea6435b142df4aaaf8854b3200b9f442b331f143 (diff)
downloadlibcore-e2a6f77f112c01109db196d8b19767896ee977ea.zip
libcore-e2a6f77f112c01109db196d8b19767896ee977ea.tar.gz
libcore-e2a6f77f112c01109db196d8b19767896ee977ea.tar.bz2
Merge remote branch 'goog/master' into mm
Conflicts: libcore/JavaLibrary.mk
Diffstat (limited to 'x-net/src')
-rw-r--r--x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/OpenSSLSocketImpl.java30
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;