From f04097c3dd3d618c9a7d209e369202cb5c8277ea Mon Sep 17 00:00:00 2001 From: allo Date: Sun, 11 Mar 2007 18:43:11 +0000 Subject: [PATCH] integrated tor-patch for crawling, if yacyDebugMode is set. (replaces: http://yacy.deruwe.de/overlay/net-misc/yacy-tor/files/disable_dns_checks-svn3132.patch) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3470 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaCrawlStacker.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaCrawlStacker.java b/source/de/anomic/plasma/plasmaCrawlStacker.java index d95d986b4..2791114fe 100644 --- a/source/de/anomic/plasma/plasmaCrawlStacker.java +++ b/source/de/anomic/plasma/plasmaCrawlStacker.java @@ -297,7 +297,9 @@ public final class plasmaCrawlStacker { // check if ip is local ip address checkInterruption(); // TODO: this is protocol specific InetAddress hostAddress = httpc.dnsResolve(nexturl.getHost()); - if (hostAddress == null) { + if(this.sb.getConfig("yacyDebugMode", "true").equals("true")){ + //just ignore the check in debugmode (useful for tor(.eff.org) + }else if (hostAddress == null) { // if a http proxy is configured name resolution may not work if (this.sb.remoteProxyConfig == null || !this.sb.remoteProxyConfig.useProxy()) { reason = plasmaCrawlEURL.DENIED_UNKNOWN_HOST;