[Xorp-cvs] XORP cvs commit: xorp/fea

Pavlin Radoslavov pavlin at icir.org
Tue Apr 17 23:21:03 PDT 2007


CVSROOT:	/usr/local/share/doc/apache/cvs
Module name:	xorp
Changes by:	pavlin at xorpc.icir.org	2007-04-18 06:21:03 UTC

XORP CVS repository


Modified files:
	fea           .cvsignore Jamfile Makefile.am Makefile.in 
	              README.mfea TODO ifconfig.cc ifconfig.hh 
	              ifconfig_addr_table.hh 
	              ifconfig_observer_iphelper.cc 
	              ifconfig_observer_netlink.cc 
	              ifconfig_observer_rtsock.cc libfeaclient_bridge.cc 
	              libfeaclient_bridge.hh profile_vars.cc 
	              xrl_ifmanager.hh xrl_ifupdate.cc xrl_ifupdate.hh 
	              xrl_mfea_node.hh xrl_packet_acl.cc 
	              xrl_packet_acl.hh xrl_socket_server.cc 
	              xrl_socket_server.hh 

Added files:
	fea           fea_io.cc fea_io.hh fea_node.cc fea_node.hh 
	              ifconfig_reporter.cc ifconfig_reporter.hh 
	              xorp_fea.cc xrl_fea_io.cc xrl_fea_io.hh 
	              xrl_fea_node.cc xrl_fea_node.hh xrl_fea_target.cc 
	              xrl_fea_target.hh 

Removed files:
	fea           configure_mfea demo_fea_ifmgr_client.cc fea.cc 
	              ifmanager.hh test_add_route.sh 
	              test_config_interface.sh test_config_win32_eth.sh 
	              test_fea.cc test_fti.cc test_ifconfig_rtsock.cc 
	              test_ifmanager.cc test_ifmanager_transaction.cc 
	              test_mfea.cc test_rawsock4.cc test_xrls.sh 
	              xrl_target.cc xrl_target.hh 

Log message:
	Beginning of refactoring the FEA.
	
	* Refactoring and cleanup at the top of the FEA.
	
	* Removed test programs that are obsoleted or not really useful.
	
	* Removed the test_mfea stand-alone program, because it is not
	  needed/used anymore.
	
	* Removed associated shell scripts that are not needed anymore.

Revision  Changes                                  Path
1.9       +0 -6;  commitid: 15f54625b6687ea6;      xorp/fea/.cvsignore
1.5       +12 -59;  commitid: 15f54625b6687ea6;    xorp/fea/Jamfile
1.71      +90 -170;  commitid: 15f54625b6687ea6;   xorp/fea/Makefile.am
1.90      +138 -289;  commitid: 15f54625b6687ea6;  xorp/fea/Makefile.in
1.20      +1 -74;  commitid: 15f54625b6687ea6;     xorp/fea/README.mfea
1.34      +1 -11;  commitid: 15f54625b6687ea6;     xorp/fea/TODO
1.12      +0 -209                                  xorp/fea/configure_mfea (dead)
1.15      +0 -216                                  xorp/fea/demo_fea_ifmgr_client.cc (dead)
1.59      +0 -435                                  xorp/fea/fea.cc (dead)
1.1       +63 -0                                   xorp/fea/fea_io.cc (new)
1.1       +78 -0                                   xorp/fea/fea_io.hh (new)
1.1       +145 -0                                  xorp/fea/fea_node.cc (new)
1.1       +152 -0                                  xorp/fea/fea_node.hh (new)
1.53      +1 -159;  commitid: 15f54625b6687ea6;    xorp/fea/ifconfig.cc
1.51      +6 -214;  commitid: 15f54625b6687ea6;    xorp/fea/ifconfig.hh
1.9       +4 -3;  commitid: 15f54625b6687ea6;      xorp/fea/ifconfig_addr_table.hh
1.9       +7 -8;  commitid: 15f54625b6687ea6;      xorp/fea/ifconfig_observer_iphelper.cc
1.19      +7 -8;  commitid: 15f54625b6687ea6;      xorp/fea/ifconfig_observer_netlink.cc
1.17      +7 -8;  commitid: 15f54625b6687ea6;      xorp/fea/ifconfig_observer_rtsock.cc
1.1       +188 -0                                  xorp/fea/ifconfig_reporter.cc (new)
1.1       +241 -0                                  xorp/fea/ifconfig_reporter.hh (new)
1.9       +0 -40                                   xorp/fea/ifmanager.hh (dead)
1.19      +12 -28;  commitid: 15f54625b6687ea6;    xorp/fea/libfeaclient_bridge.cc
1.9       +6 -13;  commitid: 15f54625b6687ea6;     xorp/fea/libfeaclient_bridge.hh
1.6       +3 -3;  commitid: 15f54625b6687ea6;      xorp/fea/profile_vars.cc
1.23      +0 -1088                                 xorp/fea/test_add_route.sh (dead)
1.18      +0 -1912                                 xorp/fea/test_config_interface.sh (dead)
1.2       +0 -31                                   xorp/fea/test_config_win32_eth.sh (dead)
1.17      +0 -597                                  xorp/fea/test_fea.cc (dead)
1.12      +0 -379                                  xorp/fea/test_fti.cc (dead)
1.13      +0 -188                                  xorp/fea/test_ifconfig_rtsock.cc (dead)
1.10      +0 -266                                  xorp/fea/test_ifmanager.cc (dead)
1.10      +0 -293                                  xorp/fea/test_ifmanager_transaction.cc (dead)
1.28      +0 -347                                  xorp/fea/test_mfea.cc (dead)
1.23      +0 -478                                  xorp/fea/test_rawsock4.cc (dead)
1.4       +0 -84                                   xorp/fea/test_xrls.sh (dead)
1.1       +181 -0                                  xorp/fea/xorp_fea.cc (new)
1.1       +58 -0                                   xorp/fea/xrl_fea_io.cc (new)
1.1       +71 -0                                   xorp/fea/xrl_fea_io.hh (new)
1.1       +220 -0                                  xorp/fea/xrl_fea_node.cc (new)
1.1       +169 -0                                  xorp/fea/xrl_fea_node.hh (new)
1.1       +2770 -0                                 xorp/fea/xrl_fea_target.cc (new)
1.1       +1482 -0                                 xorp/fea/xrl_fea_target.hh (new)
1.13      +11 -13;  commitid: 15f54625b6687ea6;    xorp/fea/xrl_ifmanager.hh
1.13      +3 -1;  commitid: 15f54625b6687ea6;      xorp/fea/xrl_ifupdate.cc
1.15      +5 -3;  commitid: 15f54625b6687ea6;      xorp/fea/xrl_ifupdate.hh
1.29      +8 -1;  commitid: 15f54625b6687ea6;      xorp/fea/xrl_mfea_node.hh
1.8       +37 -7;  commitid: 15f54625b6687ea6;     xorp/fea/xrl_packet_acl.cc
1.6       +88 -59;  commitid: 15f54625b6687ea6;    xorp/fea/xrl_packet_acl.hh
1.36      +14 -2;  commitid: 15f54625b6687ea6;     xorp/fea/xrl_socket_server.cc
1.18      +22 -1;  commitid: 15f54625b6687ea6;     xorp/fea/xrl_socket_server.hh
1.86      +0 -2772                                 xorp/fea/xrl_target.cc (dead)
1.63      +0 -1424                                 xorp/fea/xrl_target.hh (dead)



More information about the Xorp-cvs mailing list