From: Ondrej Filip Date: Fri, 16 Jul 2004 08:27:11 +0000 (+0000) Subject: Added handling of STUB bool. X-Git-Tag: v1.2.0~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d94a524b637dbb1513c23daefa8411dcdc9a054;p=thirdparty%2Fbird.git Added handling of STUB bool. --- diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 7a07e6e25..3a021db97 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -75,6 +75,7 @@ ospf_area_opts: ospf_area_item: STUB COST expr { this_area->stub = $3 ; if($3<=0) cf_error("Stub cost must be greater than zero"); } + | STUB bool {if($2) { if(!this_area->stub) this_area->stub=DEFAULT_STUB_COST;}else{ this_area->stub=0;}} | NETWORKS '{' pref_list '}' | INTERFACE ospf_iface_list | ospf_vlink diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 8f0b49837..6992f3ebf 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -53,6 +53,7 @@ #define DEFAULT_OSPFTICK 1 #define DEFAULT_RFC1583 0 /* compatibility with rfc1583 */ +#define DEFAULT_STUB_COST 1000 struct ospf_config