diff options
author | Maria Matejka <mq@ucw.cz> | 2023-01-23 19:36:22 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-01-23 19:39:45 +0100 |
commit | 4e6cd1b2e354efb1df087a4296560b4b4b03fd7c (patch) | |
tree | b4140c296b488645307714fbc4bf5d9b01ac1dc7 | |
parent | 5481bcd82f4c9dc2074267fb56858f5bf48910df (diff) | |
parent | b28431e557c4f63923476094a919a0630001275e (diff) |
Merge commit 'b28431e557c4f63923476094a919a0630001275e' into thread-next
-rw-r--r-- | filter/test.conf | 2 | ||||
-rw-r--r-- | proto/babel/babel.c | 1 | ||||
-rw-r--r-- | proto/rip/rip.c | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/filter/test.conf b/filter/test.conf index 22f5dea3..9b24a408 100644 --- a/filter/test.conf +++ b/filter/test.conf @@ -1639,7 +1639,6 @@ bool t; igp_metric = 53; babel_metric = 64; t = defined(babel_router_id); - j = babel_seqno; bgp_origin = ORIGIN_IGP; bgp_path = +empty+; @@ -1665,7 +1664,6 @@ bool t; rip_metric = 2; rip_tag = 4; - t = defined(rip_from); krt_source = 17; krt_metric = 19; diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 685bb122..a00be9a5 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -2100,6 +2100,7 @@ static struct ea_class ea_babel_seqno = { .name = "babel_seqno", .type = T_INT, .readonly = 1, + .hidden = 1, }; diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 183fc265..5981ffa7 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -1260,6 +1260,7 @@ static struct ea_class ea_rip_from = { .name = "rip_from", .type = T_IFACE, .readonly = 1, + .hidden = 1, }; void |