From: Jan Maria Matejka Date: Wed, 27 Sep 2017 14:55:09 +0000 (+0200) Subject: Docs: Update to v2.0 X-Git-Tag: v2.0.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e52d112d714545df3cd97119824ee94c27a0606;p=thirdparty%2Fbird.git Docs: Update to v2.0 --- diff --git a/conf/conf.c b/conf/conf.c index 624773316..885e2e7e0 100644 --- a/conf/conf.c +++ b/conf/conf.c @@ -219,11 +219,6 @@ global_commit(struct config *new, struct config *old) if (!old) return 0; - if (!ipa_equal(old->listen_bgp_addr, new->listen_bgp_addr) || - (old->listen_bgp_port != new->listen_bgp_port) || - (old->listen_bgp_flags != new->listen_bgp_flags)) - log(L_WARN "Reconfiguration of BGP listening socket not implemented, please restart BIRD."); - if (!new->router_id) { new->router_id = old->router_id; diff --git a/conf/conf.h b/conf/conf.h index d6f59eacb..f174d352d 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -32,9 +32,6 @@ struct config { struct iface_patt *router_id_from; /* Configured list of router ID iface patterns */ u32 router_id; /* Our Router ID */ - ip_addr listen_bgp_addr; /* Listening BGP socket should use this address */ - unsigned listen_bgp_port; /* Listening BGP socket should use this port (0 is default) */ - u32 listen_bgp_flags; /* Listening BGP socket should use these flags */ unsigned proto_default_debug; /* Default protocol debug mask */ unsigned proto_default_mrtdump; /* Default protocol mrtdump mask */ struct timeformat tf_route; /* Time format for 'show route' */ diff --git a/doc/bird.sgml b/doc/bird.sgml index ab515191b..c50d0cde6 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -1,7 +1,7 @@