No subject



Mon Nov 29 09:18:23 2004
Return-Path: xorp-cvs-admin@icir.org
Delivery-Date: Mon, 29 Nov 2004 01:19:02 -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 iAT9J2BE013522
	for <atanu@tigger.icir.org>; Mon, 29 Nov 2004 01:19:02 -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 iAT9J2eU020465
	for <atanu@icir.org>; Mon, 29 Nov 2004 01:19:02 -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 iAT9J2N1022265;
	Mon, 29 Nov 2004 01:19:02 -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 iAT9ION1022250
	for <xorp-cvs@icsi.berkeley.edu>; Mon, 29 Nov 2004 01:18:24 -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 iAT9INeU020459
	for <xorp-cvs@icir.org>; Mon, 29 Nov 2004 01:18:23 -0800 (PST)
	(envelope-from bms@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 iAT9IN0M074007
	for <xorp-cvs@icir.org>; Mon, 29 Nov 2004 01:18:23 -0800 (PST)
	(envelope-from bms@xorpc.icir.org)
Received: (from bms@localhost)
	by xorpc.icir.org (8.12.11/8.12.3/Submit) id iAT9INcW074006
	for xorp-cvs@icir.org; Mon, 29 Nov 2004 09:18:23 GMT
	(envelope-from bms)
Date: Mon, 29 Nov 2004 09:18:23 GMT
From: Bruce Simpson <bms@icir.org>
Message-Id: <200411290918.iAT9INcW074006@xorpc.icir.org>
To: xorp-cvs@icir.org
X-XORP-CVS-Branch: HEAD
Subject: [Xorp-cvs] XORP cvs commit: xorp/fea xorp/xrl/interfaces xorp/xrl/targets
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:	bms@xorpc.icir.org	2004-11-29 09:18:23 UTC

XORP CVS repository


Modified files:
	fea           Makefile.am Makefile.in rawsock6.cc rawsock6.hh 
	              xrl_target.cc xrl_target.hh 
	xrl/interfaces fea_rawpkt6.xif fea_rawpkt6_client.xif 
	               fea_rawpkt6_client_xif.cc 
	               fea_rawpkt6_client_xif.hh fea_rawpkt6_xif.cc 
	               fea_rawpkt6_xif.hh 
	xrl/targets   fea.xrls fea_base.cc fea_base.hh 

Added files:
	fea           xrl_rawsock6.cc xrl_rawsock6.hh 

Log message:
	Because of the way IPv6 raw sockets work,
	clients have to state which protocol they're
	sending or be told which they are receiving.
	
	Update the XRL interfaces to reflect this.
	Push changes into the top half of the FEA
	XRL dispatch.
	
	Hook up the XrlRawSocket6Manager to the build,
	but don't connect it to the top half yet.
	
	TODO: Wire things together at the FEA XRL target.
	TODO: Improve the IPv6 raw send capabilities.

Revision  Changes    Path
1.50      +3 -1      xorp/fea/Makefile.am
1.63      +5 -3      xorp/fea/Makefile.in
1.5       +7 -7      xorp/fea/rawsock6.cc
1.5       +5 -5      xorp/fea/rawsock6.hh
1.1       +331 -0    xorp/fea/xrl_rawsock6.cc (new)
1.1       +101 -0    xorp/fea/xrl_rawsock6.hh (new)
1.60      +17 -7     xorp/fea/xrl_target.cc
1.46      +8 -3      xorp/fea/xrl_target.hh
1.2       +17 -7     xorp/xrl/interfaces/fea_rawpkt6.xif
1.2       +15 -5     xorp/xrl/interfaces/fea_rawpkt6_client.xif
1.2       +15 -5     xorp/xrl/interfaces/fea_rawpkt6_client_xif.cc
1.2       +8 -3      xorp/xrl/interfaces/fea_rawpkt6_client_xif.hh
1.2       +13 -3     xorp/xrl/interfaces/fea_rawpkt6_xif.cc
1.2       +7 -2      xorp/xrl/interfaces/fea_rawpkt6_xif.hh
1.45      +2 -2      xorp/xrl/targets/fea.xrls
1.47      +9 -4      xorp/xrl/targets/fea_base.cc
1.51      +7 -2      xorp/xrl/targets/fea_base.hh
_______________________________________________
Xorp-cvs mailing list
Xorp-cvs@icir.org
http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-cvs