No subject



Fri Dec 10 23:12:15 2004
Return-Path: xorp-cvs-admin@icir.org
Delivery-Date: Fri, 10 Dec 2004 15:13:01 -0800
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 iBAND1aO080732
	for <atanu@tigger.icir.org>; Fri, 10 Dec 2004 15:13:01 -0800 (PST)
	(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 iBAND1Fw015085
	for <atanu@icir.org>; Fri, 10 Dec 2004 15:13:01 -0800 (PST)
	(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 iBAND1UF021822;
	Fri, 10 Dec 2004 15:13:01 -0800 (PST)
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 iBANCFUF021770
	for <xorp-cvs@icsi.berkeley.edu>; Fri, 10 Dec 2004 15:12:15 -0800 (PST)
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 iBANCFFw015077
	for <xorp-cvs@icir.org>; Fri, 10 Dec 2004 15:12:15 -0800 (PST)
	(envelope-from pavlin@icir.org)
Received: from xorpc.icir.org (localhost [127.0.0.1])
	by xorpc.icir.org (8.12.11/8.12.8) with ESMTP id iBANCFej022390
	for <xorp-cvs@icir.org>; Fri, 10 Dec 2004 15:12:15 -0800 (PST)
	(envelope-from pavlin@xorpc.icir.org)
Received: (from pavlin@localhost)
	by xorpc.icir.org (8.12.11/8.12.3/Submit) id iBANCFbq022389
	for xorp-cvs@icir.org; Fri, 10 Dec 2004 23:12:15 GMT
	(envelope-from pavlin)
Date: Fri, 10 Dec 2004 23:12:15 GMT
From: Pavlin Radoslavov <pavlin@icir.org>
Message-Id: <200412102312.iBANCFbq022389@xorpc.icir.org>
To: xorp-cvs@icir.org
X-XORP-CVS-Branch: HEAD
Subject: [Xorp-cvs] XORP cvs commit: xorp/fea
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/share/doc/apache/cvs
Module name:	xorp
Changes by:	pavlin@xorpc.icir.org	2004-12-10 23:12:15 UTC

XORP CVS repository


Modified files:
	fea           fte.hh fticonfig_entry_get_netlink.cc 
	              fticonfig_entry_get_rtsock.cc 
	              fticonfig_entry_set_click.cc 
	              fticonfig_entry_set_dummy.cc 
	              fticonfig_entry_set_netlink.cc 
	              fticonfig_entry_set_rtsock.cc 
	              fticonfig_table_get_click.cc 
	              fticonfig_table_get_netlink.cc 
	              fticonfig_table_get_sysctl.cc 
	              fticonfig_table_observer.cc 

Log message:
	* Re-implement FteX to use BaseFteX as a base class.
	  Now the new implementation allows to construct an FteX object
	  ftom Fte4 or Fte6 objects. In addition, it supports new
	  methods get_fte4() and get_fte6() to construct the corresponding
	  Fte4 or Fte6 entries.
	
	* Remove all explicit Fte4/Fte6/FteX constructors that use
	  numerous parameters. Instead, use the new FteX constructors,
	  and the new FteX::get_fte4() and FteX::get_fte6() methods.
	
	* Modify the routing socket and netlink socket provider-specific
	  add/delete entry methods to check if the entry to add/delete
	  is directly-connected route. If yes, then return success
	  without doing anything, because the UNIX kernel doesn't like
	  user-land programs to manipulate the directly-connected
	  forwarding entries that the kernel itself manipulates.

Revision  Changes    Path
1.15      +120 -2    xorp/fea/fte.hh
1.26      +3 -7      xorp/fea/fticonfig_entry_get_netlink.cc
1.25      +5 -13     xorp/fea/fticonfig_entry_get_rtsock.cc
1.12      +17 -13    xorp/fea/fticonfig_entry_set_click.cc
1.8       +13 -1     xorp/fea/fticonfig_entry_set_dummy.cc
1.19      +11 -13    xorp/fea/fticonfig_entry_set_netlink.cc
1.23      +11 -13    xorp/fea/fticonfig_entry_set_rtsock.cc
1.6       +3 -11     xorp/fea/fticonfig_table_get_click.cc
1.24      +3 -11     xorp/fea/fticonfig_table_get_netlink.cc
1.16      +3 -11     xorp/fea/fticonfig_table_get_sysctl.cc
1.9       +3 -23     xorp/fea/fticonfig_table_observer.cc
_______________________________________________
Xorp-cvs mailing list
Xorp-cvs@icir.org
http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs