From owner-cvs-all@FreeBSD.ORG Sun Jul 19 07:31:04 2009 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5BEE1065670; Sun, 19 Jul 2009 07:31:04 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A105C8FC1A; Sun, 19 Jul 2009 07:31:04 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n6J7V4CU001767; Sun, 19 Jul 2009 07:31:04 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n6J7V4sI001766; Sun, 19 Jul 2009 07:31:04 GMT (envelope-from hrs) Message-Id: <200907190731.n6J7V4sI001766@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 19 Jul 2009 07:31:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/openbgpd Makefile ports/net/openbgpd/files patch-bgpctl_bgpctl.8 patch-bgpctl_bgpctl.c patch-bgpctl_irr_asset.c patch-bgpctl_parser.c patch-bgpctl_parser.h patch-bgpd_Makefile patch-bgpd_bgpd.8 patch-bgpd_bgpd.c patch-bgpd_bgpd.conf.5 ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Jul 2009 07:31:05 -0000 hrs 2009-07-19 07:31:04 UTC FreeBSD ports repository Modified files: net/openbgpd Makefile net/openbgpd/files patch-bgpctl_bgpctl.8 patch-bgpctl_bgpctl.c patch-bgpctl_parser.c patch-bgpctl_parser.h patch-bgpd_Makefile patch-bgpd_bgpd.8 patch-bgpd_bgpd.conf.5 patch-bgpd_bgpd.h patch-bgpd_carp.c patch-bgpd_kroute.c patch-bgpd_parse.y patch-bgpd_printconf.c patch-bgpd_rde_attr.c patch-bgpd_rde_filter.c patch-bgpd_rde_prefix.c patch-bgpd_rde_rib.c patch-bgpd_rde_update.c patch-bgpd_session.c patch-bgpd_util.c patch-openbsd-compat_openbsd-compat.h Added files: net/openbgpd/files patch-bgpctl_irr_asset.c patch-bgpd_bgpd.c patch-bgpd_buffer.c patch-bgpd_config.c patch-bgpd_control.c patch-bgpd_imsg.c patch-bgpd_imsg.h patch-bgpd_log.h patch-bgpd_mrt.c patch-bgpd_mrt.h patch-bgpd_name2id.c patch-bgpd_pfkey.c patch-bgpd_rde.c patch-bgpd_rde.h patch-bgpd_rde_decide.c patch-bgpd_session.h patch-bgpd_timer.c Log: Update to 4.5.20090709 (from snapshot as of 2009/7/9). Add support for nexthop with an IPv6 link-local address. To enable this, specify "interface" in bgpd.conf (see bgpd.conf(5)). Revision Changes Path 1.23 +14 -6 ports/net/openbgpd/Makefile 1.4 +37 -4 ports/net/openbgpd/files/patch-bgpctl_bgpctl.8 1.8 +117 -4 ports/net/openbgpd/files/patch-bgpctl_bgpctl.c 1.1 +23 -0 ports/net/openbgpd/files/patch-bgpctl_irr_asset.c (new) 1.4 +132 -3 ports/net/openbgpd/files/patch-bgpctl_parser.c 1.2 +21 -8 ports/net/openbgpd/files/patch-bgpctl_parser.h 1.5 +9 -5 ports/net/openbgpd/files/patch-bgpd_Makefile 1.7 +21 -3 ports/net/openbgpd/files/patch-bgpd_bgpd.8 1.1 +87 -0 ports/net/openbgpd/files/patch-bgpd_bgpd.c (new) 1.4 +131 -5 ports/net/openbgpd/files/patch-bgpd_bgpd.conf.5 1.4 +378 -6 ports/net/openbgpd/files/patch-bgpd_bgpd.h 1.1 +234 -0 ports/net/openbgpd/files/patch-bgpd_buffer.c (new) 1.4 +26 -7 ports/net/openbgpd/files/patch-bgpd_carp.c 1.1 +23 -0 ports/net/openbgpd/files/patch-bgpd_config.c (new) 1.1 +28 -0 ports/net/openbgpd/files/patch-bgpd_control.c (new) 1.1 +264 -0 ports/net/openbgpd/files/patch-bgpd_imsg.c (new) 1.1 +115 -0 ports/net/openbgpd/files/patch-bgpd_imsg.h (new) 1.7 +1002 -23 ports/net/openbgpd/files/patch-bgpd_kroute.c 1.1 +21 -0 ports/net/openbgpd/files/patch-bgpd_log.h (new) 1.1 +1002 -0 ports/net/openbgpd/files/patch-bgpd_mrt.c (new) 1.1 +208 -0 ports/net/openbgpd/files/patch-bgpd_mrt.h (new) 1.1 +14 -0 ports/net/openbgpd/files/patch-bgpd_name2id.c (new) 1.4 +441 -4 ports/net/openbgpd/files/patch-bgpd_parse.y 1.1 +81 -0 ports/net/openbgpd/files/patch-bgpd_pfkey.c (new) 1.3 +117 -4 ports/net/openbgpd/files/patch-bgpd_printconf.c 1.1 +1572 -0 ports/net/openbgpd/files/patch-bgpd_rde.c (new) 1.1 +309 -0 ports/net/openbgpd/files/patch-bgpd_rde.h (new) 1.3 +50 -3 ports/net/openbgpd/files/patch-bgpd_rde_attr.c 1.1 +127 -0 ports/net/openbgpd/files/patch-bgpd_rde_decide.c (new) 1.2 +42 -4 ports/net/openbgpd/files/patch-bgpd_rde_filter.c 1.2 +325 -10 ports/net/openbgpd/files/patch-bgpd_rde_prefix.c 1.3 +897 -3 ports/net/openbgpd/files/patch-bgpd_rde_rib.c 1.3 +160 -3 ports/net/openbgpd/files/patch-bgpd_rde_update.c 1.5 +314 -3 ports/net/openbgpd/files/patch-bgpd_session.c 1.1 +55 -0 ports/net/openbgpd/files/patch-bgpd_session.h (new) 1.1 +14 -0 ports/net/openbgpd/files/patch-bgpd_timer.c (new) 1.3 +48 -3 ports/net/openbgpd/files/patch-bgpd_util.c 1.2 +26 -3 ports/net/openbgpd/files/patch-openbsd-compat_openbsd-compat.h