I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2d41de7a authored by ragnarok's avatar ragnarok Committed by zzz
Browse files

Restore original method of filtering names with non .i2p tlds

parent bc5bc62c
No related branches found
No related tags found
No related merge requests found
...@@ -188,7 +188,7 @@ public class AddressBook { ...@@ -188,7 +188,7 @@ public class AddressBook {
String otherKey = (String) otherIter.next(); String otherKey = (String) otherIter.next();
String otherValue = (String) other.addresses.get(otherKey); String otherValue = (String) other.addresses.get(otherKey);
if (otherValue.length() >= 516) { if (otherKey.endsWith(".i2p") && otherValue.length() >= 516) {
if (this.addresses.containsKey(otherKey)) { if (this.addresses.containsKey(otherKey)) {
if (!this.addresses.get(otherKey).equals(otherValue) if (!this.addresses.get(otherKey).equals(otherValue)
&& log != null) { && log != null) {
...@@ -243,27 +243,4 @@ public class AddressBook { ...@@ -243,27 +243,4 @@ public class AddressBook {
public void write() { public void write() {
this.write(new File(this.location)); this.write(new File(this.location));
} }
}
/** \ No newline at end of file
* Filter out bad addresses in this addressbook, and write them to log.
* Returns the number of addresses removed.
*
* @author Sugadude
*/
public int filter(Log log) {
Iterator iter = this.addresses.keySet().iterator();
int removed = 0;
while(iter.hasNext()) {
String aKey = (String) iter.next();
if(!aKey.endsWith(".i2p")) {
iter.remove();
removed++;
if(log != null)
log.append("Invalid address " + aKey + " filtered out.");
}
}
if(removed > 0)
this.modified = true;
return removed;
}
}
...@@ -64,7 +64,6 @@ public class Daemon { ...@@ -64,7 +64,6 @@ public class Daemon {
while (iter.hasNext()) { while (iter.hasNext()) {
master.merge((AddressBook) iter.next(), log); master.merge((AddressBook) iter.next(), log);
} }
master.filter(log); /** @author Sugadude */
master.write(new File(routerLocation)); master.write(new File(routerLocation));
master.write(published); master.write(published);
subscriptions.write(); subscriptions.write();
...@@ -169,4 +168,4 @@ public class Daemon { ...@@ -169,4 +168,4 @@ public class Daemon {
} }
} }
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment