diff options
author | Subbaiah Venkata <svenkata@google.com> | 2012-03-28 08:48:05 +0200 |
---|---|---|
committer | Avneesh Sachdev <avneesh@opensourcerouting.org> | 2012-04-07 22:54:37 +0200 |
commit | e38e0df01ad305ad48ecf816b52fa99fd3f2a4e1 (patch) | |
tree | ad565c3d656c0d5b74a1a3a80f1774bef938b1b4 /isisd/isis_route.h | |
parent | isisd: add Google's changes to IS-IS (diff) | |
download | frr-e38e0df01ad305ad48ecf816b52fa99fd3f2a4e1.tar.xz frr-e38e0df01ad305ad48ecf816b52fa99fd3f2a4e1.zip |
isisd: couple of bug fixes
Diffstat (limited to 'isisd/isis_route.h')
-rw-r--r-- | isisd/isis_route.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isisd/isis_route.h b/isisd/isis_route.h index 1312400c8..5adea2293 100644 --- a/isisd/isis_route.h +++ b/isisd/isis_route.h @@ -30,6 +30,7 @@ struct isis_nexthop6 { unsigned int ifindex; struct in6_addr ip6; + struct in6_addr router_address6; unsigned int lock; }; #endif /* HAVE_IPV6 */ @@ -38,6 +39,7 @@ struct isis_nexthop { unsigned int ifindex; struct in_addr ip; + struct in_addr router_address; unsigned int lock; }; |