IPv6 bugfix

pull/1/head
Michael Peter Christen 13 years ago
parent 26cb1c65c2
commit 8e97ada7c9

@ -602,7 +602,7 @@ public final class HTTPDemon implements serverHandler, Cloneable {
} }
// setting other connection properties // setting other connection properties
prop.put(HeaderFramework.CONNECTION_PROP_CLIENTIP, session.userAddress.isAnyLocalAddress() ? "localhost" : session.userAddress.getHostAddress()); prop.put(HeaderFramework.CONNECTION_PROP_CLIENTIP, session.userAddress.isAnyLocalAddress() || session.userAddress.isLinkLocalAddress() || session.userAddress.isLoopbackAddress() ? "localhost" : session.userAddress.getHostAddress());
prop.put(HeaderFramework.CONNECTION_PROP_METHOD, HeaderFramework.METHOD_CONNECT); prop.put(HeaderFramework.CONNECTION_PROP_METHOD, HeaderFramework.METHOD_CONNECT);
prop.put(HeaderFramework.CONNECTION_PROP_PATH, "/"); prop.put(HeaderFramework.CONNECTION_PROP_PATH, "/");
prop.put(HeaderFramework.CONNECTION_PROP_EXT, ""); prop.put(HeaderFramework.CONNECTION_PROP_EXT, "");

@ -885,6 +885,7 @@ public class Domains {
"127.0.0.1".equals(host) || "127.0.0.1".equals(host) ||
"localhost".equals(host) || "localhost".equals(host) ||
host.startsWith("0:0:0:0:0:0:0:1") || host.startsWith("0:0:0:0:0:0:0:1") ||
host.startsWith("fe80:0:0:0:0:0:0:1") || // used by my mac as localhost
host.startsWith("::1/") || host.startsWith("::1/") ||
"::1".equals(host) "::1".equals(host)
); );

@ -1048,9 +1048,7 @@ public class Seed implements Cloneable, Comparable<Seed>, Comparator<Seed>
try { try {
final URL url = new URL(seedURL); final URL url = new URL(seedURL);
final String host = url.getHost(); final String host = url.getHost();
if ( host.equals("localhost") if (Domains.isLocalhost(host)) {
|| host.startsWith("127.")
|| (host.startsWith("0:0:0:0:0:0:0:1")) ) {
return "seedURL in localhost rejected"; return "seedURL in localhost rejected";
} }
} catch ( final MalformedURLException e ) { } catch ( final MalformedURLException e ) {

Loading…
Cancel
Save