diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelConnectClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelConnectClient.java index 45e530e6e575c0187c98075079c40b5cf2f974d7..7690e2c650f514881eeb4e217b74d1f2e64861d3 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelConnectClient.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelConnectClient.java @@ -78,12 +78,6 @@ public class I2PTunnelConnectClient extends I2PTunnelHTTPClientBase implements R "Your browser is misconfigured. Do not use the proxy to access the router console or other localhost destinations.<BR>") .getBytes(); - final static byte[] SUCCESS_RESPONSE = - ("HTTP/1.1 200 Connection Established\r\n"+ - "Proxy-agent: I2P\r\n"+ - "\r\n") - .getBytes(); - /** * @throws IllegalArgumentException if the I2PTunnel does not contain * valid config to contact the router diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java index 389f0eb99e398373a5467d58d03afbfb8cd4d3a7..ed4224ef3409a3dea6cbdcd181df7522a4ff3329 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java @@ -966,7 +966,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn byte[] response; if (method.toUpperCase(Locale.US).equals("CONNECT")) { data = null; - response = I2PTunnelConnectClient.SUCCESS_RESPONSE; + response = SUCCESS_RESPONSE; } else { data = newRequest.toString().getBytes("ISO-8859-1"); response = null; @@ -1099,7 +1099,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn response = null; } else { data = null; - response = I2PTunnelConnectClient.SUCCESS_RESPONSE; + response = SUCCESS_RESPONSE; } Thread t = new I2PTunnelRunner(s, i2ps, sockLock, data, response, mySockets, onTimeout); t.start(); diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClientBase.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClientBase.java index b00611311a2474d6a877d814122845b3119fb861..7fb82c5bcb8a64a2fd503dad4c2dc647c8c6be41 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClientBase.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClientBase.java @@ -93,6 +93,12 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem "be temporarily offline. You may want to <b>retry</b>. " + "Could not find the following Destination:<BR><BR><div>").getBytes(); + protected final static byte[] SUCCESS_RESPONSE = + ("HTTP/1.1 200 Connection Established\r\n"+ + "Proxy-agent: I2P\r\n"+ + "\r\n") + .getBytes(); + private final byte[] _proxyNonce; private final ConcurrentHashMap<String, NonceInfo> _nonces; private final AtomicInteger _nonceCleanCounter = new AtomicInteger();