diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-04 18:30:04 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-04 18:30:04 +0200 |
commit | c76ba51a5fc7d61e18213f99d9c09502af0bc192 (patch) | |
tree | e778fef3a0fe4a169ba35f162733904e40756498 /proto/ospf/packet.c | |
parent | 28de5133ecdcb5b45dc251123047164fbb940e50 (diff) | |
download | bird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.tar bird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.zip |
lsack.c cleaned. Better names for functions and
DIRECT acks can be sent in one packet now.
Diffstat (limited to 'proto/ospf/packet.c')
-rw-r--r-- | proto/ospf/packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c index 8ee6cba..53daa8f 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -192,7 +192,7 @@ ospf_rx_hook (sock * sk, int size) break; case LSACK_P: DBG ("%s: Link state ack received.\n", p->name); - ospf_lsack_rx ((struct ospf_lsack_packet *) ps, p, ifa, size); + ospf_lsack_receive((struct ospf_lsack_packet *) ps, p, ifa, size); break; default: log ("%s: Bad packet received: wrong type %u", p->name, ps->type); |