From 531a48d8c5c168329640ccb21cd062dbb7b6f5a2 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Tue, 6 Jun 2000 02:32:14 +0000 Subject: Tracing in LS ack. --- proto/ospf/lsack.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'proto') diff --git a/proto/ospf/lsack.c b/proto/ospf/lsack.c index b7c1367..f04b430 100644 --- a/proto/ospf/lsack.c +++ b/proto/ospf/lsack.c @@ -31,7 +31,7 @@ ospf_lsack_direct_tx(struct ospf_neighbor *n,struct ospf_lsa_header *h) op->length=htons(len); ospf_pkt_finalize(n->ifa, op); sk_send_to(sk,len, n->ip, OSPF_PROTO); - debug("%s: LS ack sent to %I\n", p->name, n->ip); + OSPF_TRACE(D_PACKETS, "LS ack sent to %I", n->ip); } void @@ -64,8 +64,9 @@ ospf_lsack_delay_tx(struct ospf_neighbor *n) struct ospf_lsa_header *h; struct lsah_n *no; struct ospf_iface *ifa=n->ifa; + struct proto *p=&n->ifa->proto->proto; - debug("%s: LS ack sent to %I (delayed)\n",n->ifa->proto->proto.name,n->ip); + OSPF_TRACE(D_PACKETS, "LS ack sent to %I (delayed)",n->ip); if(ifa->type==OSPF_IT_BCAST) { @@ -170,12 +171,12 @@ ospf_lsack_rx(struct ospf_lsack_packet *ps, struct proto *p, if((n=find_neigh(ifa, nrid))==NULL) { - debug("%s: Received LS ack from unknown neigbor! (%I)\n", p->name, + OSPF_TRACE(D_PACKETS, "Received LS ack from unknown neigbor! (%I)", nrid); return ; } - debug("%s: Received LS ack from %I\n", p->name, n->ip); + OSPF_TRACE(D_PACKETS, "Received LS ack from %I", n->ip); ospf_neigh_sm(n, INM_HELLOREC); if(n->statename,n->ip); - debug("%s: Id: %I, Rt: %I, Type: %u\n",p->name,lsa.id,lsa.rt,lsa.type); - debug("%s: I have: Age: %4u, Seqno: 0x%08x, Sum: %u\n", - p->name, en->lsa.age, en->lsa.sn, en->lsa.checksum); - debug("%s: He has: Age: %4u, Seqno: 0x%08x, Sum: %u\n", - p->name,lsa.age,lsa.sn,lsa.checksum); + OSPF_TRACE(D_PACKETS, "Strange LS acknoledgement from %I",n->ip); + OSPF_TRACE(D_PACKETS, "Id: %I, Rt: %I, Type: %u", + lsa.id,lsa.rt,lsa.type); + OSPF_TRACE(D_PACKETS, "I have: Age: %4u, Seqno: 0x%08x, Sum: %u", + en->lsa.age, en->lsa.sn, en->lsa.checksum); + OSPF_TRACE(D_PACKETS, "He has: Age: %4u, Seqno: 0x%08x, Sum: %u", + lsa.age,lsa.sn,lsa.checksum); continue; } -- cgit v1.2.3