X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fnet%2FHTTP.java;h=15ba89928f3ed499d85984de9172215a418094a1;hp=0142a9e743911102568869ecc58d4573d23c4161;hb=01732f3955ae92c0520283b44f52d1ec69f9f9f2;hpb=ebbcec1cfefe424d92ad83a31ece7a07ddfc7e25 diff --git a/src/org/ibex/net/HTTP.java b/src/org/ibex/net/HTTP.java index 0142a9e..15ba899 100644 --- a/src/org/ibex/net/HTTP.java +++ b/src/org/ibex/net/HTTP.java @@ -180,8 +180,8 @@ public class HTTP { /** Attempts a direct connection */ private Socket attemptDirect() { try { - if (Log.verbose) Log.info(this, "attempting to create unproxied socket to " + - host + ":" + port + (ssl ? " [ssl]" : "")); + Log.info(this, "attempting to create unproxied socket to " + + host + ":" + port + (ssl ? " [ssl]" : "")); return getSocket(host, port, ssl, true); } catch (IOException e) { if (Log.on) Log.info(this, "exception in attemptDirect(): " + e); @@ -328,7 +328,7 @@ public class HTTP { throw new IOException("HTTP only supports http/https urls"); } if (url.indexOf("://") == -1) throw new IOException("URLs must contain a ://"); - String temphost = url.substring(url.indexOf("://") + 1); + String temphost = url.substring(url.indexOf("://") + 3); path = temphost.substring(temphost.indexOf('/')); temphost = temphost.substring(0, temphost.indexOf('/')); if (temphost.indexOf(':') != -1) {