diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 17:27:03 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 17:27:03 +0200 |
commit | 7b0c89a47fa1f63248ceaa1e9c1b3948dd29a68d (patch) | |
tree | a1be538eeac144479ba65e8f67d25e396abcc937 /nest/rt.h | |
parent | 41508ceac3cdd74ca705d3bfc6a79464bf38e0b5 (diff) | |
parent | f2e725a76882ba6b75c3ce4fb3c760bd83462410 (diff) |
Merge commit 'f2e725a76882ba6b75c3ce4fb3c760bd83462410' into haugesund
Diffstat (limited to 'nest/rt.h')
-rw-r--r-- | nest/rt.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -439,12 +439,12 @@ struct rt_show_data_rtable * rt_show_add_table(struct rt_show_data *d, rtable *t #define RSEM_EXPORTED 4 /* Routes marked in export map */ struct hostentry * rt_get_hostentry(rtable *tab, ip_addr a, ip_addr ll, rtable *dep); -void rta_apply_hostentry(rta *a, struct hostentry *he, mpls_label_stack *mls); +void rta_apply_hostentry(rta *a, struct hostentry *he); static inline void -rta_set_recursive_next_hop(rtable *dep, rta *a, rtable *tab, ip_addr gw, ip_addr ll, mpls_label_stack *mls) +rta_set_recursive_next_hop(rtable *dep, rta *a, rtable *tab, ip_addr gw, ip_addr ll) { - rta_apply_hostentry(a, rt_get_hostentry(tab, gw, ll, dep), mls); + rta_apply_hostentry(a, rt_get_hostentry(tab, gw, ll, dep)); } /* |