From 200accf396b869267fd707b56afddb27d8479acc Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 27 Mar 2000 12:16:37 +0000 Subject: if_connected() is again private. Introduced neigh_connected_to() to serve the same purpose efficiently. --- nest/iface.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'nest/iface.h') diff --git a/nest/iface.h b/nest/iface.h index 379f566..94c0945 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -114,6 +114,12 @@ typedef struct neighbor { */ neighbor *neigh_find(struct proto *, ip_addr *, unsigned flags); +static inline int neigh_connected_to(struct proto *p, ip_addr *a, struct iface *i) +{ + neighbor *n = neigh_find(p, a, 0); + return n && n->iface == i; +} + void neigh_dump(neighbor *); void neigh_dump_all(void); void neigh_prune(void); @@ -121,8 +127,6 @@ void neigh_if_up(struct iface *); void neigh_if_down(struct iface *); void neigh_init(struct pool *); -extern int if_connected(ip_addr *a, struct iface *i); /* -1=error, 1=match, 0=no match */ - /* * Interface Pattern Lists */ -- cgit v1.2.3