[Xorp-cvs] XORP cvs commit: xorp/fea xorp/fea/forwarding_plane/control_socket xorp/fea/forwarding_plane/fibconfig xorp/fea/forwarding_plane/ifconfig

Pavlin Radoslavov pavlin at icir.org
Mon Apr 30 18:42:42 PDT 2007


CVSROOT:	/usr/local/share/doc/apache/cvs
Module name:	xorp
Changes by:	pavlin at xorpc.icir.org	2007-05-01 01:42:42 UTC

XORP CVS repository


Modified files:
	fea           Makefile.am Makefile.in fibconfig_entry_get.hh 
	              fibconfig_entry_observer.hh fibconfig_entry_set.hh 
	              fibconfig_table_get.hh fibconfig_table_observer.hh 
	              fibconfig_table_set.hh ifconfig_get.hh 
	              ifconfig_observer.hh mfea_proto_comm.cc rawsock.cc 
	fea/forwarding_plane/fibconfig 
	                               fibconfig_entry_get_netlink_socket.cc 
	                               fibconfig_entry_parse_netlink_socket.cc 
	                               fibconfig_entry_parse_routing_socket.cc 
	                               fibconfig_entry_set_netlink_socket.cc 
	                               fibconfig_entry_set_routing_socket.cc 
	                               fibconfig_table_parse_netlink_socket.cc 
	                               fibconfig_table_parse_routing_socket.cc 
	fea/forwarding_plane/ifconfig ifconfig_get_proc_linux.cc 
	                              ifconfig_parse_getifaddrs.cc 
	                              ifconfig_parse_ioctl.cc 
	                              ifconfig_parse_netlink_socket.cc 
	                              ifconfig_parse_routing_socket.cc 
	                              ifconfig_set_netlink_socket.cc 

Added files:
	fea/forwarding_plane/control_socket click_socket.cc 
	                                    click_socket.hh 
	                                    netlink_socket.cc 
	                                    netlink_socket.hh 
	                                    netlink_socket_utilities.cc 
	                                    netlink_socket_utilities.hh 
	                                    routing_socket.cc 
	                                    routing_socket.hh 
	                                    routing_socket_utilities.cc 
	                                    routing_socket_utilities.hh 
	                                    system_utilities.hh 

Removed files:
	fea           click_socket.cc click_socket.hh netlink_socket.cc 
	              netlink_socket.hh netlink_socket_utils.cc 
	              netlink_socket_utils.hh routing_socket.cc 
	              routing_socket.hh routing_socket_utils.cc 
	              routing_socket_utils.hh 

Log message:
	FEA refactoring:
	
	Moved the control socket specific files from fea/ to
	fea/forwarding_plane/control_socket/ and in the process rename
	some of them:
	
	click_socket.cc -> forwarding_plane/control_socket/click_socket.cc
	click_socket.hh -> forwarding_plane/control_socket/click_socket.hh
	kernel_utils.hh -> forwarding_plane/control_socket/system_utilities.hh
	netlink_socket.cc -> forwarding_plane/control_socket/netlink_socket.cc
	netlink_socket.hh -> forwarding_plane/control_socket/netlink_socket.hh
	netlink_socket_utils.cc
	    -> forwarding_plane/control_socket/netlink_socket_utilities.cc
	netlink_socket_utils.hh
	    -> forwarding_plane/control_socket/netlink_socket_utilities.hh
	routing_socket.cc -> forwarding_plane/control_socket/routing_socket.cc
	routing_socket.hh -> forwarding_plane/control_socket/routing_socket.hh
	routing_socket_utils.cc
	    -> forwarding_plane/control_socket/routing_socket_utilities.cc
	routing_socket_utils.hh
	    -> forwarding_plane/control_socket/routing_socket_utilities.hh

Revision  Changes                                 Path
1.84      +12 -12;  commitid: 1703a463699e07ea6;  xorp/fea/Makefile.am
1.103     +76 -35;  commitid: 1703a463699e07ea6;  xorp/fea/Makefile.in
1.33      +0 -1316                                xorp/fea/click_socket.cc (dead)
1.24      +0 -636                                 xorp/fea/click_socket.hh (dead)
1.7       +4 -4;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_entry_get.hh
1.4       +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_entry_observer.hh
1.4       +4 -4;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_entry_set.hh
1.7       +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_table_get.hh
1.5       +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_table_observer.hh
1.4       +4 -4;  commitid: 1703a463699e07ea6;    xorp/fea/fibconfig_table_set.hh
1.1       +1316 -0                                xorp/fea/forwarding_plane/control_socket/click_socket.cc (new)
1.1       +636 -0                                 xorp/fea/forwarding_plane/control_socket/click_socket.hh (new)
1.1       +679 -0                                 xorp/fea/forwarding_plane/control_socket/netlink_socket.cc (new)
1.1       +277 -0                                 xorp/fea/forwarding_plane/control_socket/netlink_socket.hh (new)
1.1       +409 -0                                 xorp/fea/forwarding_plane/control_socket/netlink_socket_utilities.cc (new)
1.1       +138 -0                                 xorp/fea/forwarding_plane/control_socket/netlink_socket_utilities.hh (new)
1.1       +394 -0                                 xorp/fea/forwarding_plane/control_socket/routing_socket.cc (new)
1.1       +212 -0                                 xorp/fea/forwarding_plane/control_socket/routing_socket.hh (new)
1.1       +535 -0                                 xorp/fea/forwarding_plane/control_socket/routing_socket_utilities.cc (new)
1.1       +68 -0                                  xorp/fea/forwarding_plane/control_socket/routing_socket_utilities.hh (new)
1.1       +141 -0                                 xorp/fea/forwarding_plane/control_socket/system_utilities.hh (new)
1.7       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_entry_get_netlink_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_entry_parse_netlink_socket.cc
1.7       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_entry_parse_routing_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_entry_set_netlink_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_entry_set_routing_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_table_parse_netlink_socket.cc
1.7       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/fibconfig/fibconfig_table_parse_routing_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_get_proc_linux.cc
1.4       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_parse_getifaddrs.cc
1.4       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_parse_ioctl.cc
1.4       +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_parse_netlink_socket.cc
1.6       +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_parse_routing_socket.cc
1.6       +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/forwarding_plane/ifconfig/ifconfig_set_netlink_socket.cc
1.35      +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/ifconfig_get.hh
1.22      +3 -3;  commitid: 1703a463699e07ea6;    xorp/fea/ifconfig_observer.hh
1.73      +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/mfea_proto_comm.cc
1.45      +0 -679                                 xorp/fea/netlink_socket.cc (dead)
1.23      +0 -277                                 xorp/fea/netlink_socket.hh (dead)
1.42      +0 -408                                 xorp/fea/netlink_socket_utils.cc (dead)
1.20      +0 -138                                 xorp/fea/netlink_socket_utils.hh (dead)
1.45      +2 -2;  commitid: 1703a463699e07ea6;    xorp/fea/rawsock.cc
1.33      +0 -394                                 xorp/fea/routing_socket.cc (dead)
1.17      +0 -212                                 xorp/fea/routing_socket.hh (dead)
1.41      +0 -535                                 xorp/fea/routing_socket_utils.cc (dead)
1.11      +0 -68                                  xorp/fea/routing_socket_utils.hh (dead)



More information about the Xorp-cvs mailing list