Author: nextgens
Date: 2008-07-18 12:38:24 +0000 (Fri, 18 Jul 2008)
New Revision: 21207
Modified:
trunk/freenet/src/freenet/node/Node.java
Log:
disable FOAF for now: it has some bad security implications (I'm gonna post to
@devl about it)
Modified: trunk/freenet/src/freenet/node/Node.java
===================================================================
--- trunk/freenet/src/freenet/node/Node.java 2008-07-18 10:58:54 UTC (rev
21206)
+++ trunk/freenet/src/freenet/node/Node.java 2008-07-18 12:38:24 UTC (rev
21207)
@@ -859,7 +859,7 @@
});
enableSwapping = nodeConfig.getBoolean("enableSwapping");
- nodeConfig.register("publishOurPeersLocation", true,
sortOrder++, true, false, "Node.publishOurPeersLocation",
"Node.publishOurPeersLocationLong", new BooleanCallback() {
+ nodeConfig.register("publishOurPeersLocation", false,
sortOrder++, true, false, "Node.publishOurPeersLocation",
"Node.publishOurPeersLocationLong", new BooleanCallback() {
public boolean get() {
return publishOurPeersLocation;
@@ -871,7 +871,7 @@
});
publishOurPeersLocation =
nodeConfig.getBoolean("publishOurPeersLocation");
- nodeConfig.register("routeAccordingToOurPeersLocation", true,
sortOrder++, true, false, "Node.routeAccordingToOurPeersLocation",
"Node.routeAccordingToOurPeersLocationLong", new BooleanCallback() {
+ nodeConfig.register("routeAccordingToOurPeersLocation", false,
sortOrder++, true, false, "Node.routeAccordingToOurPeersLocation",
"Node.routeAccordingToOurPeersLocationLong", new BooleanCallback() {
public boolean get() {
return routeAccordingToOurPeersLocation;