Author: nextgens
Date: 2006-09-07 22:25:24 +0000 (Thu, 07 Sep 2006)
New Revision: 10425
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
973:
The current network situation is worste than what it used to be,
that build ought to fix a major bug in 972 but might introduce newer ones ...
Too bad toad isn't around for reviewing the code I've commited :'(
* Refactor PeerNode.getMessageDigest to
SHA256.getMessageDigest() (may b
e debatable ; pro : generic handling of errors ; con : add a non-standard depend
ency to most of our classes)
* Fix some bugs in StationToStationContext : I hadn't the book on my kne
es when I did it ; it needs reviewing!
* Fix the "grab peerCryptoGroup" from ARK code and extend it to DH excha
nge
* Add a mutex when computing the signature on Node.exportPublicFieldSet(
)
* Remove signature from ARKs
* Remove some dead-code/unused inserts/catch blocks
* Make "final static" variables from Node public
* More untested work on FNPPacketMangler
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-09-07 22:10:39 UTC (rev
10424)
+++ trunk/freenet/src/freenet/node/Version.java 2006-09-07 22:25:24 UTC (rev
10425)
@@ -21,7 +21,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 972;
+ private static final int buildNumber = 973;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 950;