From ccb73437c48f9499a535af1c0ae29a3418976ece Mon Sep 17 00:00:00 2001 From: jrandom Date: Thu, 1 Sep 2005 00:26:20 +0000 Subject: [PATCH] 2005-08-31 jrandom * Don't publish leaseSets to the netDb if they will never be looked for - namely, if they are for destinations that only establish outbound streams. I2PTunnel's 'client' and 'httpclient' proxies have been modified to tell the router that it doesn't need to publish their leaseSet (by setting the I2CP config option 'i2cp.dontPublishLeaseSet' to 'true'). * Don't publish the top 10 peer rankings of each router in the netdb, as it isn't being watched right now. --- history.txt | 12 +++++++++++- .../java/src/net/i2p/router/StatisticsManager.java | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index 98ddfe06a0..8aaac280bc 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,14 @@ -$Id: history.txt,v 1.231 2005/08/27 17:15:38 jrandom Exp $ +$Id: history.txt,v 1.232 2005/08/29 20:59:13 jrandom Exp $ + +2005-08-31 jrandom + * Don't publish leaseSets to the netDb if they will never be looked for - + namely, if they are for destinations that only establish outbound + streams. I2PTunnel's 'client' and 'httpclient' proxies have been + modified to tell the router that it doesn't need to publish their + leaseSet (by setting the I2CP config option 'i2cp.dontPublishLeaseSet' + to 'true'). + * Don't publish the top 10 peer rankings of each router in the netdb, as + it isn't being watched right now. 2005-08-29 jrandom * Added the new test Floodfill netDb diff --git a/router/java/src/net/i2p/router/StatisticsManager.java b/router/java/src/net/i2p/router/StatisticsManager.java index 64d27d74ff..7079942a26 100644 --- a/router/java/src/net/i2p/router/StatisticsManager.java +++ b/router/java/src/net/i2p/router/StatisticsManager.java @@ -100,7 +100,8 @@ public class StatisticsManager implements Service { stats.setProperty("core.id", CoreVersion.ID); if (_includePeerRankings) { - stats.putAll(_context.profileManager().summarizePeers(_publishedStats)); + if (false) + stats.putAll(_context.profileManager().summarizePeers(_publishedStats)); includeThroughput(stats); includeRate("router.invalidMessageTime", stats, new long[] { 10*60*1000 });