diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-03-26 20:00:45 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-03-26 20:00:45 +0200 |
commit | 697711be2cf6b5da140b8c12c301affa53488021 (patch) | |
tree | 4af82ac70bfa924e1906782829276d6cbe12d4f4 | |
parent | 9ee07ca53fd94ad72b7cb2776cc15f13a026a910 (diff) | |
download | bird-697711be2cf6b5da140b8c12c301affa53488021.tar bird-697711be2cf6b5da140b8c12c301affa53488021.zip |
if_connected is usefull outside of neighbour cache.
-rw-r--r-- | nest/iface.h | 2 | ||||
-rw-r--r-- | nest/neighbor.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/nest/iface.h b/nest/iface.h index e8e4e73..8540a4d 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -121,6 +121,8 @@ 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 */ diff --git a/nest/neighbor.c b/nest/neighbor.c index c4328b6..5750f8c 100644 --- a/nest/neighbor.c +++ b/nest/neighbor.c @@ -24,7 +24,7 @@ neigh_hash(struct proto *p, ip_addr *a) return (p->hash_key ^ ipa_hash(*a)) & (NEIGH_HASH_SIZE-1); } -static int +int if_connected(ip_addr *a, struct iface *i) /* -1=error, 1=match, 0=no match */ { struct ifa *b; |