0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-22 11:58:42 +00:00

Filter: Remove T_ENUM_RTC

It is not used for a long time.
This commit is contained in:
Ondrej Zajicek 2024-10-18 16:53:12 +02:00
parent 1002c35bf9
commit 294d363da0
3 changed files with 3 additions and 6 deletions

View File

@ -25,7 +25,6 @@ class BIRDFValPrinter(BIRDPrinter):
"T_ENUM_RTS": "i",
"T_ENUM_BGP_ORIGIN": "i",
"T_ENUM_SCOPE": "i",
"T_ENUM_RTC": "i",
"T_ENUM_RTD": "i",
"T_ENUM_ROA": "i",
"T_ENUM_NET_TYPE": "i",

View File

@ -37,7 +37,6 @@ static const char * const f_type_str[] = {
[T_ENUM_RTS] = "enum rts",
[T_ENUM_BGP_ORIGIN] = "enum bgp_origin",
[T_ENUM_SCOPE] = "enum scope",
[T_ENUM_RTC] = "enum rtc",
[T_ENUM_RTD] = "enum rtd",
[T_ENUM_ROA] = "enum roa",
[T_ENUM_ASPA] = "enum aspa",

View File

@ -36,14 +36,13 @@ enum f_type {
T_ENUM_RTS = 0x30,
T_ENUM_BGP_ORIGIN = 0x31,
T_ENUM_SCOPE = 0x32,
T_ENUM_RTC = 0x33,
T_ENUM_RTD = 0x34,
T_ENUM_ROA = 0x35,
T_ENUM_RTD = 0x33,
T_ENUM_ROA = 0x34,
T_ENUM_ASPA = 0x35,
T_ENUM_NET_TYPE = 0x36,
T_ENUM_RA_PREFERENCE = 0x37,
T_ENUM_AF = 0x38,
T_ENUM_MPLS_POLICY = 0x39,
T_ENUM_ASPA = 0x3a,
/* new enums go here */
T_ENUM_EMPTY = 0x3f, /* Special hack for atomic_aggr */