[Xorp-cvs] XORP cvs commit: xorp/bgp xorp/bgp/harness xorp/bgp/tools

Bruce Simpson bms@icir.org
Thu, 18 Aug 2005 15:58:11 GMT


CVSROOT:	/usr/local/www/data/cvs
Module name:	xorp
Changes by:	bms@xorpc.icir.org	2005-08-18 15:58:11 UTC

XORP CVS repository


Modified files:
	bgp           Makefile.am aspath.cc aspath_test.cc bgp.cc bgp.hh 
	              dummy_main.cc dummy_next_hop_resolver.cc 
	              exceptions.hh internal_message.cc iptuple.cc 
	              local_data.cc local_data.hh main.cc 
	              next_hop_resolver.cc notification_packet.cc 
	              open_packet.cc packet.hh parameter.cc 
	              path_attribute.cc path_attribute.hh peer.cc peer.hh 
	              peer_data.cc peer_list.cc peer_route_pair.hh 
	              plumbing.cc profile_vars.cc route_queue.cc 
	              route_table_reader.hh socket.cc socket.hh 
	              test_cache.cc test_decision.cc test_deletion.cc 
	              test_dump.cc test_fanout.cc test_filter.cc 
	              test_main.cc test_next_hop_resolver.cc 
	              test_nhlookup.cc test_packet.cc test_packet.hh 
	              test_peer_data.cc test_plumbing.cc test_ribin.cc 
	              test_ribout.cc test_subnet_route.cc 
	              update_attrib.cc update_packet.cc update_test.cc 
	              xrl_target.cc 
	bgp/harness   Makefile.am bgppp.cc command.cc coord.cc peer.cc 
	              test_peer.cc test_peer.hh test_trie.cc trie.cc 
	bgp/tools     print_peer.hh print_peers.cc print_routes.hh 
	              print_routes_main.cc xorpsh_print_routes.cc 

Log message:
	XORP/Win32 merge to mainline.
	 Use libcomm for portability.
	 Use XorpFd and IoEvents for portability.
	 Use portable means of obtaining system time.
	 Use comm_sock_is_connected() instead of playing getpeername() games.
	 Use send() and recv() for socket I/O as these are portable
	 to Winsock.
	 Use XORP_SOCKOPT_CAST() where needed.

Revision  Changes                                  Path
1.39      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/Makefile.am
1.26      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/aspath.cc
1.14      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/aspath_test.cc
1.54      +46 -39;  commitid: 164bd4304b0047ea6;   xorp/bgp/bgp.cc
1.43      +6 -6;  commitid: 164bd4304b0047ea6;     xorp/bgp/bgp.hh
1.12      +6 -5;  commitid: 164bd4304b0047ea6;     xorp/bgp/dummy_main.cc
1.13      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/dummy_next_hop_resolver.cc
1.8       +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/exceptions.hh
1.18      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/Makefile.am
1.8       +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/bgppp.cc
1.22      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/command.cc
1.24      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/coord.cc
1.65      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/peer.cc
1.33      +95 -107;  commitid: 164bd4304b0047ea6;  xorp/bgp/harness/test_peer.cc
1.13      +7 -8;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/test_peer.hh
1.19      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/test_trie.cc
1.17      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/harness/trie.cc
1.10      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/internal_message.cc
1.14      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/iptuple.cc
1.11      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/local_data.cc
1.10      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/local_data.hh
1.43      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/main.cc
1.44      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/next_hop_resolver.cc
1.22      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/notification_packet.cc
1.23      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/open_packet.cc
1.33      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/packet.hh
1.28      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/parameter.cc
1.60      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/path_attribute.cc
1.36      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/path_attribute.hh
1.95      +13 -7;  commitid: 164bd4304b0047ea6;    xorp/bgp/peer.cc
1.23      +4 -4;  commitid: 164bd4304b0047ea6;     xorp/bgp/peer.hh
1.22      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/peer_data.cc
1.19      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/peer_list.cc
1.15      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/peer_route_pair.hh
1.70      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/plumbing.cc
1.12      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/profile_vars.cc
1.10      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/route_queue.cc
1.8       +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/route_table_reader.hh
1.31      +49 -89;  commitid: 164bd4304b0047ea6;   xorp/bgp/socket.cc
1.15      +12 -13;  commitid: 164bd4304b0047ea6;   xorp/bgp/socket.hh
1.25      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_cache.cc
1.33      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_decision.cc
1.24      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_deletion.cc
1.47      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_dump.cc
1.27      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_fanout.cc
1.30      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_filter.cc
1.15      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_main.cc
1.24      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_next_hop_resolver.cc
1.27      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_nhlookup.cc
1.11      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_packet.cc
1.6       +2 -2;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_packet.hh
1.10      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_peer_data.cc
1.16      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_plumbing.cc
1.29      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_ribin.cc
1.26      +1 -1;  commitid: 164bd4304b0047ea6;     xorp/bgp/test_ribout.cc
1.6       +10 -10;  commitid: 164bd4304b0047ea6;   xorp/bgp/test_subnet_route.cc
1.12      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/tools/print_peer.hh
1.6       +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/tools/print_peers.cc
1.15      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/tools/print_routes.hh
1.8       +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/tools/print_routes_main.cc
1.11      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/tools/xorpsh_print_routes.cc
1.12      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/update_attrib.cc
1.36      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/update_packet.cc
1.14      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/update_test.cc
1.39      +0 -0;  commitid: 164bd4304b0047ea6;     xorp/bgp/xrl_target.cc