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

Modified Files:
      Tag: ngrouting
        FnpLink.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: FnpLink.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/session/FnpLink.java,v
retrieving revision 1.28
retrieving revision 1.28.2.1
diff -u -r1.28 -r1.28.2.1
--- FnpLink.java        20 Jul 2003 10:30:30 -0000      1.28
+++ FnpLink.java        30 Aug 2003 19:49:53 -0000      1.28.2.1
@@ -859,7 +859,8 @@
     }
     
     public InputStream makeInputStream(InputStream is) {
-       innerIn.setIn(is);
+       if(innerIn != null) innerIn.setIn(is);
+       else return null;
        return getInputStream();
     }
     

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

Reply via email to