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 ...

Hiroki Sato hrs at FreeBSD.org
Sun Jul 19 07:31:05 UTC 2009


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


More information about the cvs-all mailing list