ospf_instance_id:
/* empty */
- | INSTANCE expr { set_instance_id($2); }
+ | INSTANCE expr {
+ if (ospf_cfg_is_v2()) cf_error("Instance ID requires OSPFv3");
+ OSPF_PATT->instance_id = $2;
+ }
;
+ ospf_iface_patt_list:
+ iface_patt_list { if (OSPF_VERSION == 3) iface_patt_check(); } ospf_instance_id
+ ;
+
ospf_iface_opts:
/* empty */
| ospf_iface_opts ospf_iface_item ';'
#define _BIRD_CONFIG_H_
/* BIRD version */
- #define BIRD_VERSION "1.4.0"
+ #define BIRD_VERSION "1.4.2"
+// XXXX temporary define
+#define IPV1 1
+
/* Include parameters determined by configure script */
#include "sysdep/autoconf.h"