diff options
Diffstat (limited to 'nest/neighbor.c')
-rw-r--r-- | nest/neighbor.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nest/neighbor.c b/nest/neighbor.c index 2c5af6a..01dd2ad 100644 --- a/nest/neighbor.c +++ b/nest/neighbor.c @@ -103,6 +103,12 @@ if_connected(ip_addr *a, struct iface *i) /* -1=error, 1=match, 0=no match */ neighbor * neigh_find(struct proto *p, ip_addr *a, unsigned flags) { + return neigh_find2(p, a, NULL, flags); +} + +neighbor * +neigh_find2(struct proto *p, ip_addr *a, unsigned flags) +{ neighbor *n; int class, scope = SCOPE_HOST; unsigned int h = neigh_hash(p, a); |