diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-12-24 18:08:07 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-12-24 18:08:07 +0100 |
commit | 919f5411c48f509a49400a1293e670f5d5d2bcf1 (patch) | |
tree | 0701f270439c2e71a017c75f3095367db724ca8e /proto/ospf/packet.c | |
parent | 39847cda73d8e8536300b74d90d01b6e2f233ef7 (diff) |
Implements Point-to-MultiPoint interface type for OSPF.
Diffstat (limited to 'proto/ospf/packet.c')
-rw-r--r-- | proto/ospf/packet.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c index bfc17d76..e8ebafd8 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -240,19 +240,6 @@ ospf_pkt_checkauth(struct ospf_neighbor *n, struct ospf_iface *ifa, struct ospf_ #endif -#ifdef OSPFv2 -static inline struct ospf_neighbor * -find_neigh_by_ip(struct ospf_iface *ifa, ip_addr ip) -{ - struct ospf_neighbor *n; - WALK_LIST(n, ifa->neigh_list) - if (ipa_equal(n->ip, ip)) - return n; - return NULL; -} -#endif - - /** * ospf_rx_hook @@ -433,7 +420,7 @@ ospf_rx_hook(sock *sk, int size) #ifdef OSPFv2 /* In OSPFv2, neighbors are identified by either IP or Router ID, base on network type */ struct ospf_neighbor *n; - if ((ifa->type == OSPF_IT_BCAST) || (ifa->type == OSPF_IT_NBMA)) + if ((ifa->type == OSPF_IT_BCAST) || (ifa->type == OSPF_IT_NBMA) || (ifa->type == OSPF_IT_PTMP)) n = find_neigh_by_ip(ifa, sk->faddr); else n = find_neigh(ifa, rid); |