mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-21 09:11:54 +00:00
Filter: Remove T_ENUM_RTC
It is not used for a long time.
This commit is contained in:
parent
1002c35bf9
commit
294d363da0
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user