[Javanetsim-cvs] javaNetSim/core/protocolsuite/tcp_ip DHCPD.java, 1.8, 1.9
Status: Beta
Brought to you by:
darkkey
|
From: QweR <qw...@us...> - 2008-10-20 23:47:10
|
Update of /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20370/core/protocolsuite/tcp_ip Modified Files: DHCPD.java Log Message: DHCP + VLAN commands was corrected Index: DHCPD.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/DHCPD.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DHCPD.java 19 Oct 2008 21:40:19 -0000 1.8 --- DHCPD.java 20 Oct 2008 23:46:56 -0000 1.9 *************** *** 22,31 **** public class pool{ ! public String MAC; ! public String IP; ! public String Genmask; ! public String Gateway; } --- 22,31 ---- public class pool{ ! public String MAC=""; ! public String IP=""; ! public String Genmask=""; ! public String Gateway=""; } *************** *** 58,63 **** public boolean running = false; ! public Hashtable pools = new Hashtable(); ! public Hashtable leases = new Hashtable(); private Vector<Pair> exclude = new Vector<Pair>(0); --- 58,63 ---- public boolean running = false; ! public Hashtable<String, pool> pools = new Hashtable<String, pool>(); ! public Hashtable<String, lease> leases = new Hashtable<String, lease>(); private Vector<Pair> exclude = new Vector<Pair>(0); |