diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-06 21:53:52 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-06 21:53:52 +0200 |
commit | 5e3436d20ffdd95a164ffcb82f584fad76fb94e7 (patch) | |
tree | a9531cf1fe9bea7c8dacf41277b8793f76a62506 /proto/ospf/dbdes.c | |
parent | d5d9693ce90c190ca7358b4ac71b9d034603a3ae (diff) | |
download | bird-5e3436d20ffdd95a164ffcb82f584fad76fb94e7.tar bird-5e3436d20ffdd95a164ffcb82f584fad76fb94e7.zip |
Cleanup in packet.c. Deleted unused parameters.
Diffstat (limited to 'proto/ospf/dbdes.c')
-rw-r--r-- | proto/ospf/dbdes.c | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index 3d8ec50..54dd71f 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -182,26 +182,11 @@ ospf_dbdes_reqladd(struct ospf_dbdes_packet *ps, struct ospf_neighbor *n) void ospf_dbdes_receive(struct ospf_dbdes_packet *ps, - struct ospf_iface *ifa, u16 size) + struct ospf_iface *ifa, struct ospf_neighbor *n) { struct proto *p = (struct proto *) ifa->proto; - u32 nrid, myrid = p->cf->global->router_id; - struct ospf_neighbor *n; - - nrid = ntohl(((struct ospf_packet *) ps)->routerid); - - - if ((n = find_neigh(ifa, nrid)) == NULL) - { - OSPF_TRACE(D_PACKETS, "Received dbdes from unknown neigbor! %I.", nrid); - return; - } - - if (ifa->iface->mtu < size) - { - OSPF_TRACE(D_PACKETS, "Received dbdes larger than MTU from %I!", n->ip); - return; - } + u32 myrid = p->cf->global->router_id; + unsigned int size = ntohs(ps->ospf_packet.length); OSPF_TRACE(D_PACKETS, "Received dbdes from %I via %s.", n->ip, ifa->iface->name); |