summaryrefslogtreecommitdiffstats
path: root/proto/bgp/config.Y
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-04-28 17:13:29 +0200
committerMartin Mares <mj@ucw.cz>2000-04-28 17:13:29 +0200
commitcea636640005c9ee9b628ce07a2d467c132941fe (patch)
tree5ceba7f7ad159ce62efaafe5457eba2b712cb53f /proto/bgp/config.Y
parenta412f01ea84709b9af0113acc5aa2ce3dad1d292 (diff)
downloadbird-cea636640005c9ee9b628ce07a2d467c132941fe.tar
bird-cea636640005c9ee9b628ce07a2d467c132941fe.zip
The `bgp_origin' attribute is now an enum.
Diffstat (limited to 'proto/bgp/config.Y')
-rw-r--r--proto/bgp/config.Y6
1 files changed, 5 insertions, 1 deletions
diff --git a/proto/bgp/config.Y b/proto/bgp/config.Y
index f670106..c4514d1 100644
--- a/proto/bgp/config.Y
+++ b/proto/bgp/config.Y
@@ -10,6 +10,8 @@ CF_HDR
#include "proto/bgp/bgp.h"
+CF_DEFINES
+
#define BGP_CFG ((struct bgp_config *) this_proto)
CF_DECLS
@@ -74,7 +76,7 @@ CF_ADDTO(dynamic_attr, BGP_LOCAL_PREF
CF_ADDTO(dynamic_attr, BGP_MED
{ $$ = f_new_dynamic_attr(EAF_TYPE_INT, T_INT, EA_CODE(EAP_BGP, BA_MULTI_EXIT_DISC)); })
CF_ADDTO(dynamic_attr, BGP_ORIGIN
- { $$ = f_new_dynamic_attr(EAF_TYPE_INT, T_INT, EA_CODE(EAP_BGP, BA_ORIGIN)); })
+ { $$ = f_new_dynamic_attr(EAF_TYPE_INT, T_ENUM_BGP_ORIGIN, EA_CODE(EAP_BGP, BA_ORIGIN)); })
CF_ADDTO(dynamic_attr, BGP_NEXT_HOP
{ $$ = f_new_dynamic_attr(EAF_TYPE_IP_ADDRESS, T_IP, EA_CODE(EAP_BGP, BA_NEXT_HOP)); })
CF_ADDTO(dynamic_attr, BGP_ATOMIC_AGGR
@@ -84,6 +86,8 @@ CF_ADDTO(dynamic_attr, BGP_AGGREGATOR
CF_ADDTO(dynamic_attr, BGP_COMMUNITY
{ $$ = f_new_dynamic_attr(EAF_TYPE_INT_SET, T_CLIST, EA_CODE(EAP_BGP, BA_COMMUNITY)); })
+CF_ENUM(T_ENUM_BGP_ORIGIN, ORIGIN_, IGP, EGP, INCOMPLETE)
+
CF_CODE
CF_END