]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Filter: Remove T_ENUM_RTC
authorOndrej Zajicek <santiago@crfreenet.org>
Fri, 18 Oct 2024 14:53:12 +0000 (16:53 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Fri, 18 Oct 2024 14:53:12 +0000 (16:53 +0200)
It is not used for a long time.

bird-gdb.py
filter/data.c
filter/data.h

index 7b31904f1a96ba01682079de85258e686e782b5a..bd91493210ef03725df80ec2fc0a35bcc5262838 100644 (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",
index 2a73461a96ab9209024fdcad75201eb12177102e..98e9a25ae1e26abd7ccbc2374677e18ca21c8366 100644 (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",
index 07163bb4f3286d47e3c84b791aa16af109e85bda..811c4a802d842819deab35917d1875b730bd4159 100644 (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 */