diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-06-27 16:51:53 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-06-27 16:57:07 +0200 |
commit | 586c1800c447ff099d34889b23647c4733876d9b (patch) | |
tree | d2f3feec9aaabeffe2457d994f4c453e1d9e7782 /nest/rt-table.c | |
parent | 45f28d85818f79790968725a945063228989bae7 (diff) |
Nest: Neighbor cache cleanups
Simplify neighbor cache code, fix several minor bugs, and improve
handling of ONLINK flag.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index de7b05fc..0c0e365e 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -39,6 +39,7 @@ #include "lib/string.h" #include "conf/conf.h" #include "filter/filter.h" +#include "lib/hash.h" #include "lib/string.h" #include "lib/alloca.h" @@ -2220,13 +2221,6 @@ rt_feed_channel_abort(struct channel *c) } } -static inline unsigned -ptr_hash(void *ptr) -{ - uintptr_t p = (uintptr_t) ptr; - return p ^ (p << 8) ^ (p >> 16); -} - static inline u32 hc_hash(ip_addr a, rtable *dep) { |