[Javanetsim-cvs] javaNetSim CVS_STRUCT.txt, 1.1, 1.2 README.txt, 1.12, 1.13 TODO.txt, 1.23, 1.24 li
Status: Beta
Brought to you by:
darkkey
From: Alexander B. <da...@us...> - 2007-10-13 12:57:06
|
Update of /cvsroot/javanetsim/javaNetSim In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30660 Modified Files: CVS_STRUCT.txt README.txt TODO.txt linux.sh windows.bat Log Message: Multiple changes in Link Layer, added DHCP D/C prototype, broadcast packets (+ forwarding), changed menu structure, added MAC address editing, Serial link type and more... Index: linux.sh =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/linux.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** linux.sh 26 Oct 2006 17:06:10 -0000 1.2 --- linux.sh 13 Oct 2007 12:57:00 -0000 1.3 *************** *** 1,2 **** #!/bin/sh ! java -jar javaNetSim.jar \ No newline at end of file --- 1,2 ---- #!/bin/sh ! java -Xss50m -Xoss100m -jar javaNetSim.jar \ No newline at end of file Index: TODO.txt =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/TODO.txt,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TODO.txt 14 Sep 2007 15:30:08 -0000 1.23 --- TODO.txt 13 Oct 2007 12:57:00 -0000 1.24 *************** *** 8,16 **** 4. VPN-client/VPN-gateway (sockets, RMI and Corba mechanisms) (or PPP Client/PPP Gateway -- ??) 5. Second level Switches (VLAN, etc...) - 6. Normal SocketLayer (instead of current ugly mechanism) 7. Firewalls (NAT, PAT, etc) 8. Access-lists in Firewalls/Routers/PCs ! 9. DHCP server/clients, DNS. ! 10. Wi-Fi Access-Points and Wi-Fi adapters in PCs *** Documentation/Comments --- 8,16 ---- 4. VPN-client/VPN-gateway (sockets, RMI and Corba mechanisms) (or PPP Client/PPP Gateway -- ??) 5. Second level Switches (VLAN, etc...) 7. Firewalls (NAT, PAT, etc) 8. Access-lists in Firewalls/Routers/PCs ! 9. DHCP server/clients : main engine, re-leasing. ! 10. DNS server/clents. ! 11. Wi-Fi Access-Points and Wi-Fi adapters in PCs *** Documentation/Comments Index: CVS_STRUCT.txt =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/CVS_STRUCT.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CVS_STRUCT.txt 16 Sep 2007 19:22:15 -0000 1.1 --- CVS_STRUCT.txt 13 Oct 2007 12:57:00 -0000 1.2 *************** *** 5,9 **** Branches: ! * MAIN branch. Current (new, exprimental, non-stable) sources. Experiments should be made here. * STABLE* -- stable releases. Stabling here. ! * STABLE-0_33 \ No newline at end of file --- 5,10 ---- Branches: ! * MAIN branch. Current (new, experimental, non-stable) sources. Experiments should be made here. * STABLE* -- stable releases. Stabling here. ! * STABLE-0_33 ! * STABLE-0_34 \ No newline at end of file Index: README.txt =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/README.txt,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** README.txt 14 Sep 2007 15:30:08 -0000 1.12 --- README.txt 13 Oct 2007 12:57:00 -0000 1.13 *************** *** 3,7 **** ################################### ! Version: Public Release Version 0.33 Website: http://sf.net/projects/javanetsim Authors: See 'About' menu. --- 3,7 ---- ################################### ! Version: Public Release Version 0.34 Website: http://sf.net/projects/javanetsim Authors: See 'About' menu. *************** *** 32,35 **** --- 32,49 ---- ********************* + ***** Release Version 0.34 1th October 2007 ***** + + Fixed + ----- + + GUI Issues - + + 1. More Java 6 related diaglog fixes. + + New Features + ------------ + + 1. TCP & UDP protocol fully rewritten with socket layer. + ***** Release Version 0.33 16th September 2007 ***** Index: windows.bat =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/windows.bat,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** windows.bat 12 Oct 2006 15:21:23 -0000 1.3 --- windows.bat 13 Oct 2007 12:57:00 -0000 1.4 *************** *** 1,2 **** rem Java > 1.5 ! java -jar javaNetSim.jar --- 1,2 ---- rem Java > 1.5 ! java -Xss50m -Xoss100m -jar javaNetSim.jar |