From ea31df41029b16d714103ef95e48963f55e58114 Mon Sep 17 00:00:00 2001 From: fyodor Date: Mon, 12 Mar 2007 02:16:24 +0000 Subject: [PATCH] fingerprints with a distance > 5 are usually too sketchy to take as submissions --- FingerPrintResults.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/FingerPrintResults.cc b/FingerPrintResults.cc index 936890c17..9dd26a020 100644 --- a/FingerPrintResults.cc +++ b/FingerPrintResults.cc @@ -159,11 +159,8 @@ const char *FingerPrintResults::OmitSubmissionFP() { if (osscan_closedtcpport <= 0) return "Missing a closed TCP port so results incomplete"; - // I'm not sure this is really necessary, but maybe. Large routes - // can cause asymetric routing which leads to wrong TTL information. - // They can cause variable timing too. - if (distance > 10) { - snprintf(reason, sizeof(reason), "Host distance (%d network hops) is greater than ten", distance); + if (distance > 5) { + snprintf(reason, sizeof(reason), "Host distance (%d network hops) is greater than five", distance); return reason; }