Update of /cvsroot/freenet/freenet/src/freenet/node/states/announcing
In directory sc8-pr-cvs1:/tmp/cvs-serv1482/src/freenet/node/states/announcing

Modified Files:
      Tag: ngrouting
        Announcing.java 
Log Message:
7050: Fix a race in ConnectionOpener that was probably the source of the RNFs. Sort 
the routing table display in nodestatus. Add a parameter to route() to indicate 
whether the request is an insert. Get rid of now redundant pWildLegitDNF in NGRT. 
Change routing termination again esp w.r.t. inserts. Don't null routes, we need it for 
the StoreData. Catch anything thrown by process() when running maintqueue in RSL. 
Indenting. Logging.


Index: Announcing.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/node/states/announcing/Announcing.java,v
retrieving revision 1.32.2.1
retrieving revision 1.32.2.2
diff -u -r1.32.2.1 -r1.32.2.2
--- Announcing.java     30 Jul 2003 23:50:54 -0000      1.32.2.1
+++ Announcing.java     30 Aug 2003 19:49:52 -0000      1.32.2.2
@@ -225,7 +225,7 @@
                         byte[] b = new byte[8];
                         Core.randSource.nextBytes(b);
                         Routing routes = 
-                           n.rt.route(new Key(b), hopsToLive, 0, true);
+                           n.rt.route(new Key(b), hopsToLive, 0, true, false);
                         while (m < now.length) {
                             NodeReference nr = routes.getNextRoute();
                             if (nr == null) {

_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to