Author: toad
Date: 2005-11-12 22:23:39 +0000 (Sat, 12 Nov 2005)
New Revision: 7542

Modified:
   trunk/freenet/src/freenet/io/comm/Peer.java
   trunk/freenet/src/freenet/node/Version.java
Log:
179:
up build for nextgens' ip6 fix.

Modified: trunk/freenet/src/freenet/io/comm/Peer.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/Peer.java 2005-11-12 22:16:49 UTC (rev 
7541)
+++ trunk/freenet/src/freenet/io/comm/Peer.java 2005-11-12 22:23:39 UTC (rev 
7542)
@@ -58,7 +58,7 @@
      * @param physical
      */
     public Peer(String physical) throws PeerParseException {
-        int offset = physical.lastIndexOf(':');
+        int offset = physical.lastIndexOf(':'); // ipv6
         if(offset < 0) throw new PeerParseException();
         String before = physical.substring(0, offset);
         String after = physical.substring(offset+1);

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-11-12 22:16:49 UTC (rev 
7541)
+++ trunk/freenet/src/freenet/node/Version.java 2005-11-12 22:23:39 UTC (rev 
7542)
@@ -20,7 +20,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       public static final int buildNumber = 178;
+       public static final int buildNumber = 179;

        /** Oldest build of Fred we will talk to */
        public static final int lastGoodBuild = 178;


Reply via email to