From 0675c4caeba77b53c0304d4ab263ebea6df090d8 Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Mon, 14 Nov 2011 15:04:27 +0000
Subject: [PATCH]   * Profiles: Only use same-country metric for countries with
     lots of I2P users

---
 .../i2p/router/peermanager/PeerProfile.java   | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/router/java/src/net/i2p/router/peermanager/PeerProfile.java b/router/java/src/net/i2p/router/peermanager/PeerProfile.java
index 7f47499e00..e4283e65d1 100644
--- a/router/java/src/net/i2p/router/peermanager/PeerProfile.java
+++ b/router/java/src/net/i2p/router/peermanager/PeerProfile.java
@@ -2,6 +2,9 @@ package net.i2p.router.peermanager;
 
 import java.io.File;
 import java.text.DecimalFormat;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.Set;
 
 import net.i2p.data.Hash;
 import net.i2p.router.RouterContext;
@@ -60,6 +63,18 @@ public class PeerProfile {
     private int _consecutiveShitlists;
     private final int _distance;
     
+    /**
+     *  Countries with more than about a 2% share of the netdb.
+     *  Only routers in these countries will use a same-country metric.
+     *  Yes this is an arbitrary cutoff.
+     */
+    private static final Set<String> _bigCountries = new HashSet();
+
+    static {
+        String[] big = new String[] {"ca", "fi", "fr", "de", "ru", "se", "ua", "gb", "us" };
+        _bigCountries.addAll(Arrays.asList(big));
+    }
+
     public PeerProfile(RouterContext context, Hash peer) {
         this(context, peer, true);
     }
@@ -118,7 +133,9 @@ public class PeerProfile {
     /** @since 0.8.11 */
     boolean isSameCountry() {
         String us = _context.commSystem().getOurCountry();
-        return us != null && us.equals(_context.commSystem().getCountry(_peer));
+        return us != null &&
+               _bigCountries.contains(us) &&
+               us.equals(_context.commSystem().getCountry(_peer));
     }
 
     /**
-- 
GitLab