No subject



Fri Sep 17 13:50:56 2004
Return-Path: xorp-cvs-admin@icir.org
Delivery-Date: Fri, 17 Sep 2004 08:33:09 -0700
Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14])
	by tigger.icir.org (8.12.11/8.12.8) with ESMTP id i8HFX9Q0050212
	for <atanu@tigger.icir.org>; Fri, 17 Sep 2004 08:33:09 -0700 (PDT)
	(envelope-from xorp-cvs-admin@icir.org)
Received: from fruitcake.ICSI.Berkeley.EDU (fruitcake.ICSI.Berkeley.EDU [192.150.186.11])
	by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HFX8NK037497
	for <atanu@icir.org>; Fri, 17 Sep 2004 08:33:08 -0700 (PDT)
	(envelope-from xorp-cvs-admin@icir.org)
Received: from fruitcake.ICSI.Berkeley.EDU (localhost [127.0.0.1])
	by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HFX8GF001454;
	Fri, 17 Sep 2004 08:33:08 -0700 (PDT)
Received: from wyvern.icir.org (wyvern.icir.org [192.150.187.14])
	by fruitcake.ICSI.Berkeley.EDU (8.12.10/8.12.9) with ESMTP id i8HDovGF028648
	for <xorp-cvs@icsi.berkeley.edu>; Fri, 17 Sep 2004 06:50:57 -0700 (PDT)
Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68])
	by wyvern.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDouNK035063
	for <xorp-cvs@icir.org>; Fri, 17 Sep 2004 06:50:56 -0700 (PDT)
	(envelope-from abittau@icir.org)
Received: from xorpc.icir.org (localhost [127.0.0.1])
	by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i8HDouIb018246
	for <xorp-cvs@icir.org>; Fri, 17 Sep 2004 06:50:56 -0700 (PDT)
	(envelope-from abittau@xorpc.icir.org)
Received: (from abittau@localhost)
	by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i8HDouLU018244
	for xorp-cvs@icir.org; Fri, 17 Sep 2004 13:50:56 GMT
	(envelope-from abittau)
Date: Fri, 17 Sep 2004 13:50:56 GMT
From: Andrea Bittau <abittau@icir.org>
Message-Id: <200409171350.i8HDouLU018244@xorpc.icir.org>
To: xorp-cvs@icir.org
X-XORP-CVS-Branch: HEAD
Subject: [Xorp-cvs] XORP cvs commit: xorp/bgp
Sender: xorp-cvs-admin@icir.org
Errors-To: xorp-cvs-admin@icir.org
X-BeenThere: xorp-cvs@icir.org
X-Mailman-Version: 2.0
Precedence: bulk
List-Help: <mailto:xorp-cvs-request@icir.org?subject=help>
List-Post: <mailto:xorp-cvs@icir.org>
List-Subscribe: <http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs>,
	<mailto:xorp-cvs-request@icir.org?subject=subscribe>
List-Id: Mailing list for XORP CVS commit messages <xorp-cvs.icir.org>
List-Unsubscribe: <http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs>,
	<mailto:xorp-cvs-request@icir.org?subject=unsubscribe>

CVSROOT:	/usr/local/www/data/cvs
Module name:	xorp
Changes by:	abittau@xorpc.icir.org	2004-09-17 13:50:56 UTC

XORP CVS repository


Modified files:
	bgp           Makefile.am Makefile.in bgp.cc bgp.hh plumbing.cc 
	              plumbing.hh rib_ipc_handler.cc rib_ipc_handler.hh 
	              route_table_base.hh route_table_decision.cc 
	              route_table_fanout.cc route_table_fanout.hh 
	              route_table_filter.cc route_table_filter.hh 
	              route_table_ribin.cc subnet_route.cc 
	              subnet_route.hh test_plumbing.cc test_plumbing.hh 
	              xrl_target.cc xrl_target.hh 

Added files:
	bgp           bgp_varrw.cc bgp_varrw.hh route_table_policy.cc 
	              route_table_policy.hh route_table_policy_im.cc 
	              route_table_policy_im.hh route_table_policy_sm.cc 
	              route_table_policy_sm.hh 

Log message:
	Support for policy route filtering.
	
	Refiltering of routes (route pushing) is experimental.

Revision  Changes    Path
1.32      +10 -1     xorp/bgp/Makefile.am
1.44      +23 -7     xorp/bgp/Makefile.in
1.40      +31 -7     xorp/bgp/bgp.cc
1.30      +33 -3     xorp/bgp/bgp.hh
1.1       +246 -0    xorp/bgp/bgp_varrw.cc (new)
1.1       +103 -0    xorp/bgp/bgp_varrw.hh (new)
1.55      +85 -17    xorp/bgp/plumbing.cc
1.28      +29 -2     xorp/bgp/plumbing.hh
1.55      +25 -11    xorp/bgp/rib_ipc_handler.cc
1.33      +12 -4     xorp/bgp/rib_ipc_handler.hh
1.10      +4 -3      xorp/bgp/route_table_base.hh
1.29      +5 -3      xorp/bgp/route_table_decision.cc
1.38      +14 -1     xorp/bgp/route_table_fanout.cc
1.16      +4 -1      xorp/bgp/route_table_fanout.hh
1.23      +40 -1     xorp/bgp/route_table_filter.cc
1.12      +6 -1      xorp/bgp/route_table_filter.hh
1.1       +300 -0    xorp/bgp/route_table_policy.cc (new)
1.1       +95 -0     xorp/bgp/route_table_policy.hh (new)
1.1       +118 -0    xorp/bgp/route_table_policy_im.cc (new)
1.1       +58 -0     xorp/bgp/route_table_policy_im.hh (new)
1.1       +99 -0     xorp/bgp/route_table_policy_sm.cc (new)
1.1       +67 -0     xorp/bgp/route_table_policy_sm.hh (new)
1.33      +14 -4     xorp/bgp/route_table_ribin.cc
1.14      +8 -3      xorp/bgp/subnet_route.cc
1.15      +24 -1     xorp/bgp/subnet_route.hh
1.10      +4 -3      xorp/bgp/test_plumbing.cc
1.5       +3 -2      xorp/bgp/test_plumbing.hh
1.28      +84 -3     xorp/bgp/xrl_target.cc
1.24      +44 -1     xorp/bgp/xrl_target.hh
_______________________________________________
Xorp-cvs mailing list
Xorp-cvs@icir.org
http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs