From fd1cb52f5fe87362f0170d4ccacd5127402cfb1c Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 10 Oct 2015 18:13:11 -0700 Subject: [PATCH] Allow more time for the SSL handshake to take place --- moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java index 45c4c4c1..e134915b 100644 --- a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java @@ -49,7 +49,7 @@ public class NvHTTP { public static final int HTTPS_PORT = 47984; public static final int HTTP_PORT = 47989; - public static final int CONNECTION_TIMEOUT = 3000; + public static final int CONNECTION_TIMEOUT = 5000; public static final int READ_TIMEOUT = 5000; private static boolean verbose = false;