Update of /cvsroot/freenet/freenet/src/freenet/client
In directory sc8-pr-cvs1:/tmp/cvs-serv13542/src/freenet/client

Modified Files:
        ControlRequestProcess.java 
Log Message:
6179:
Fix zab's deadlocks.
Add setTrailerStream to MessageSendCallback. Now we can theoretically send any message 
fully async (we don't yet use it except in the below).
Add some new files, PeerHandler, PeerPacket, PeerPacketMessage, which will be used for 
a major refactoring of ConnectionHandler and separation of the message queue into a 
per-peer thing, rather than a per-connection thing. Not integrated yet, so should be 
harmless.
toString(), logging. Add log messages for long messageInitialStateTime's.
Add getCipher() to CipherOutputStream, for future use in refactoring and possibly 
elsewhere, and Link.encryptBytes(byte[]) for similar use.


Index: ControlRequestProcess.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/client/ControlRequestProcess.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ControlRequestProcess.java  19 Jun 2003 13:31:16 -0000      1.10
+++ ControlRequestProcess.java  8 Sep 2003 17:03:03 -0000       1.11
@@ -149,6 +149,6 @@
     }
     
     public String toString() {
-       return getClass().getName() + ":"+uri+"@"+htl+","+nextLevel;
+       return super.toString() + ":"+uri+"@"+htl+","+nextLevel;
     }
 }

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

Reply via email to