[Javanetsim-cvs] javaNetSim/core/protocolsuite/tcp_ip ProtocolStack.java,1.4,1.5 Udp.java,1.4,1.5
Status: Beta
Brought to you by:
darkkey
From: Alexander B. <da...@us...> - 2005-11-19 11:17:01
|
Update of /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31576/core/protocolsuite/tcp_ip Modified Files: ProtocolStack.java Udp.java Log Message: Index: ProtocolStack.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/ProtocolStack.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ProtocolStack.java 18 Nov 2005 19:41:32 -0000 1.4 --- ProtocolStack.java 19 Nov 2005 11:16:51 -0000 1.5 *************** *** 1235,1239 **** FirstInterfaceName = temp.getFirstInterfaceName(); ! if (FirstInterfaceName!="unavailable") { if(IPV4Address.validateDecIP(inDestIPAddress)) --- 1235,1239 ---- FirstInterfaceName = temp.getFirstInterfaceName(); ! if (FirstInterfaceName!=null) { if(IPV4Address.validateDecIP(inDestIPAddress)) Index: Udp.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/Udp.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Udp.java 18 Nov 2005 20:47:56 -0000 1.4 --- Udp.java 19 Nov 2005 11:16:51 -0000 1.5 *************** *** 143,147 **** * @author gift (sourceforge.net user) * @param Protocol Stack - * @return Nothing. * @version v0.20 */ --- 143,146 ---- *************** *** 299,301 **** ! } //EOF \ No newline at end of file --- 298,300 ---- ! } //EOF |