Update of /cvsroot/javanetsim/javaNetSim/core
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv21162/core
Modified Files:
README.txt WANNetworkInterface.java
Log Message:
Added WAN NIC properties dialog.
Index: WANNetworkInterface.java
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/core/WANNetworkInterface.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WANNetworkInterface.java 19 Oct 2007 08:52:26 -0000 1.3
--- WANNetworkInterface.java 19 Oct 2007 19:38:06 -0000 1.4
***************
*** 116,123 ****
//temp debug values
! Host = "127.0.0.1";
! port = 18008;
! type = this.SocketTCP;
! server = true;
}
--- 116,120 ----
//temp debug values
! up = false;
}
***************
*** 268,272 ****
case SocketTCP:
case SocketUDP:
! s.Close();
s = null;
break;
--- 265,269 ----
case SocketTCP:
case SocketUDP:
! if(s!= null) s.Close();
s = null;
break;
Index: README.txt
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/core/README.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** README.txt 20 Nov 2005 20:30:53 -0000 1.2
--- README.txt 19 Oct 2007 19:38:06 -0000 1.3
***************
*** 1 ****
! This directory contains all the file for the core of the jfirewallsim
--- 1 ----
! This directory contains all the file for the core of the javaNetSim
|