diff options
| author | Christian Franke <chris@opensourcerouting.org> | 2016-10-01 06:41:40 +0200 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-10-07 21:05:05 -0400 | 
| commit | 464015fa32f89e7f128cb19917c9e347b3284d69 (patch) | |
| tree | cd2a26c1663e632240b268241fa0e3d778e1035e /ospf6d/ospf6_asbr.h | |
| parent | dc9ffce87868441da9653d1476a4307eb2ecd996 (diff) | |
ospf6d: add support for route tags
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_asbr.h')
| -rw-r--r-- | ospf6d/ospf6_asbr.h | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/ospf6d/ospf6_asbr.h b/ospf6d/ospf6_asbr.h index 645e8fd9cf..da6bbdd9c3 100644 --- a/ospf6d/ospf6_asbr.h +++ b/ospf6d/ospf6_asbr.h @@ -47,7 +47,8 @@ struct ospf6_external_info    u_int32_t id;    struct in6_addr forwarding; -  /* u_int32_t tag; */ + +  route_tag_t tag;    ifindex_t ifindex;  }; @@ -82,7 +83,8 @@ extern int ospf6_asbr_is_asbr (struct ospf6 *o);  extern void ospf6_asbr_redistribute_add (int type, ifindex_t ifindex,                                           struct prefix *prefix,                                           u_int nexthop_num, -                                         struct in6_addr *nexthop); +                                         struct in6_addr *nexthop, +                                         route_tag_t tag);  extern void ospf6_asbr_redistribute_remove (int type, ifindex_t ifindex,                                              struct prefix *prefix);  | 
