[dijjer-cvs] Dijjer/src/dijjer/io/comm UdpSocketManager.java,1.40,1.41
Brought to you by:
gnovos
|
From: Chris <ch...@us...> - 2005-08-25 23:40:32
|
Update of /cvsroot/dijjer/Dijjer/src/dijjer/io/comm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11833/src/dijjer/io/comm Modified Files: UdpSocketManager.java Log Message: Changed receive() so that filters are created earlier. Trying to track down why there are so many unmatched packetTransmit messages. Index: UdpSocketManager.java =================================================================== RCS file: /cvsroot/dijjer/Dijjer/src/dijjer/io/comm/UdpSocketManager.java,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** UdpSocketManager.java 25 Aug 2005 00:47:34 -0000 1.40 --- UdpSocketManager.java 25 Aug 2005 23:40:24 -0000 1.41 *************** *** 74,77 **** --- 74,78 ---- || m.getSpec().equals(DMT.packetTransmit) ) { + if (m.getSpec().equals(DMT.packetTransmit)) // no more ping pong Logger.debug("" + (System.currentTimeMillis() % 60000) + " " + _listenPort + " <- " + m.getSource() + " : " + m); *************** *** 114,117 **** --- 115,119 ---- || m.getSpec().equals(DMT.packetTransmit) ) { + if (m.getSpec().equals(DMT.packetTransmit)) // no more ping pong Logger.debug("" + (System.currentTimeMillis() % 60000) + " " + _listenPort + " -> " + destination + " : " + m); |