Update of /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/ospf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28572/ospf
Modified Files:
OSPFhello_packet.java ospf_packetheader.java
Log Message:
Index: OSPFhello_packet.java
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/ospf/OSPFhello_packet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** OSPFhello_packet.java 19 Nov 2005 13:27:12 -0000 1.1
--- OSPFhello_packet.java 20 Nov 2005 11:09:42 -0000 1.2
***************
*** 2,6 ****
* OSPFhello_packet.java
*
! * Created on 19 Íîÿáðü 2005 ã., 12:57
*
* To change this template, choose Tools | Options and locate the template under
--- 2,6 ----
* OSPFhello_packet.java
*
! * Created on 19 Nov 2005, 12:57
*
* To change this template, choose Tools | Options and locate the template under
Index: ospf_packetheader.java
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/core/protocolsuite/tcp_ip/ospf/ospf_packetheader.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ospf_packetheader.java 19 Nov 2005 13:27:12 -0000 1.1
--- ospf_packetheader.java 20 Nov 2005 11:09:42 -0000 1.2
***************
*** 2,6 ****
* ospf_packetheader.java
*
! * Created on 19 Íîÿáðü 2005 ã., 13:03
*
* To change this template, choose Tools | Options and locate the template under
--- 2,6 ----
* ospf_packetheader.java
*
! * Created on 19 Nov 2005, 13:03
*
* To change this template, choose Tools | Options and locate the template under
***************
*** 26,31 ****
protected int AreaID;
protected int Checksum; // for future developing
! protected int AuthenticationType; // if 0 - authentication without password,
! // if 1 - authentication with password
protected String Authentication; // for development
--- 26,31 ----
protected int AreaID;
protected int Checksum; // for future developing
! protected boolean AuthenticationType; // if false - authentication without password,
! // if true - authentication with password
protected String Authentication; // for development
***************
*** 77,81 ****
* @version 1.0
*/
! protected int GetAuthenticationType()
{
return AuthenticationType;
--- 77,81 ----
* @version 1.0
*/
! protected boolean GetAuthenticationType()
{
return AuthenticationType;
|