diff options
author | hasso <hasso> | 2004-08-19 06:56:53 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-08-19 06:56:53 +0000 |
commit | 3b68735fc38871bdcc9fc19f38fab244f86e710b (patch) | |
tree | 3a98be6997b0fc0e0bd211a877ab477cb7e3d328 /ospf6d/ospf6_route.h | |
parent | 0de1cde6e602e7496628967aeb219cd28d4869a9 (diff) | |
download | quagga-3b68735fc38871bdcc9fc19f38fab244f86e710b.tar.bz2 quagga-3b68735fc38871bdcc9fc19f38fab244f86e710b.tar.xz |
Merge svn revisions 924 and 925 from Zebra CVS. Also remove useless
ospf6_lsdb prototype declaration from ospf6_lsa.h. Report sent to Yasuhiro
Ohara as well.
Diffstat (limited to 'ospf6d/ospf6_route.h')
-rw-r--r-- | ospf6d/ospf6_route.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ospf6d/ospf6_route.h b/ospf6d/ospf6_route.h index 333b2cec..069502f5 100644 --- a/ospf6d/ospf6_route.h +++ b/ospf6d/ospf6_route.h @@ -215,6 +215,11 @@ extern char *ospf6_path_type_substr[OSPF6_PATH_TYPE_MAX]; #define ospf6_linkstate_prefix_id(x) \ (*(u_int32_t *)(&(x)->u.prefix6.s6_addr[4])) +#define ID_IN_PREFIX(x) \ + (*(u_int32_t *)(&(x)->u.prefix6.s6_addr[0])) +#define ADV_ROUTER_IN_PREFIX(x) \ + (*(u_int32_t *)(&(x)->u.prefix6.s6_addr[4])) + /* Function prototype */ void ospf6_linkstate_prefix (u_int32_t adv_router, u_int32_t id, struct prefix *prefix); |