Conflicts:
conf/confbase.Y
;
/* Addresses, prefixes and netmasks */
+// XXXX check users
+
+ipa_raw:
+ IP4 { $$ = ipa_from_ip4($1); }
+ | IP6 { $$ = ipa_from_ip6($1); }
+ ;
ipa:
- IPA
+ ipa_raw
| SYM {
- if ($1->class != SYM_IPA) cf_error("IP address expected");
- $$ = *(ip_addr *)$1->def;
+ if ($1->class != (SYM_CONSTANT | T_IP)) cf_error("IP address expected");
+ $$ = SYM_VAL($1).px.ip;
}
;
#define _BIRD_CONFIG_H_
/* BIRD version */
- #define BIRD_VERSION "1.3.10"
+ #define BIRD_VERSION "1.3.11"
+// XXXX temporary define
+#define IPV1 1
+
/* Include parameters determined by configure script */
#include "sysdep/autoconf.h"