[Javanetsim-cvs] javaNetSim/core/protocolsuite/tcp_ip ARP.java, 1.12, 1.13
Status: Beta
Brought to you by:
darkkey
From: Alexander B. <da...@us...> - 2008-10-17 09:14:39
|
Update of /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18066/core/protocolsuite/tcp_ip Modified Files: ARP.java Log Message: Index: ARP.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/ARP.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ARP.java 13 Oct 2008 12:36:15 -0000 1.12 --- ARP.java 17 Oct 2008 09:10:16 -0000 1.13 *************** *** 113,123 **** private String mLastIpRequest = "0.0.0.0"; ! public int ARP_MAXTRY; public ARP(ProtocolStack inParentStack){ mParentStack = inParentStack; ! ARP_MAXTRY = 5; ! } --- 113,122 ---- private String mLastIpRequest = "0.0.0.0"; ! public final int ARP_MAXTRY = 5; public ARP(ProtocolStack inParentStack){ mParentStack = inParentStack; ! } |