summaryrefslogtreecommitdiffstats
path: root/proto/ospf/hello.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-04-18 20:21:10 +0200
committerOndrej Filip <feela@network.cz>2000-04-18 20:21:10 +0200
commit89929e9daad0df36a289e7ae7d70dbc648c3b6b3 (patch)
tree80026d1b2452f20be6062fd626aece33763440ff /proto/ospf/hello.c
parent1508ee8b537aceba98d3af619ba0cded4d2fce9d (diff)
downloadbird-89929e9daad0df36a289e7ae7d70dbc648c3b6b3.tar
bird-89929e9daad0df36a289e7ae7d70dbc648c3b6b3.zip
Many %u changed into %I and dump cleanup.
Diffstat (limited to 'proto/ospf/hello.c')
-rw-r--r--proto/ospf/hello.c26
1 files changed, 9 insertions, 17 deletions
diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c
index aea9c14..566c36f 100644
--- a/proto/ospf/hello.c
+++ b/proto/ospf/hello.c
@@ -50,49 +50,41 @@ void
ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p,
struct ospf_iface *ifa, int size, ip_addr faddr)
{
- char sip[100]; /* FIXME: Should be smaller */
u32 nrid, *pnrid;
struct ospf_neighbor *neigh,*n;
u8 i,twoway;
+ char *beg=": Bad OSPF hello packet from ", *rec=" received: ";
nrid=ntohl(((struct ospf_packet *)ps)->routerid);
if((unsigned)ipa_mklen(ipa_ntoh(ps->netmask))!=ifa->iface->addr->pxlen)
{
- ip_ntop(ps->netmask,sip);
- log("%s: Bad OSPF packet from %u received: bad netmask %s.",
- p->name, nrid, sip);
- log("%s: Discarding",p->name);
+ log("%s%s%I%s%Ibad netmask %I.\n", p->name, beg, nrid, rec,
+ ipa_ntoh(ps->netmask));
return;
}
if(ntohs(ps->helloint)!=ifa->helloint)
{
- log("%s: Bad OSPF packet from %u received: hello interval mismatch.",
- p->name, nrid);
- log("%s: Discarding",p->name);
+ log("%s%s%I%shello interval mismatch.\n", p->name, beg, nrid, rec);
return;
}
if(ntohl(ps->deadint)!=ifa->helloint*ifa->deadc)
{
- log("%s: Bad OSPF packet from %u received: dead interval mismatch.",
- p->name, nrid);
- log("%s: Discarding",p->name);
+ log("%s%s%I%sdead interval mismatch.\n", p->name, beg, nrid, rec);
return;
}
if(ps->options!=ifa->options)
{
- log("%s: Bad OSPF packet from %u received: options mismatch.",
- p->name, nrid); /* FIXME: This not good */
- log("%s: Discarding",p->name);
+ log("%s%s%I%soptions mismatch.\n", p->name, beg, nrid, rec);
return;
}
if((n=find_neigh(ifa, nrid))==NULL)
{
- log("%s: New neighbor found: %u.", p->name,nrid);
+ log("%s: New neighbor found: %I.", p->name,nrid);
n=mb_alloc(p->pool, sizeof(struct ospf_neighbor));
add_tail(&ifa->neigh_list, NODE n);
n->rid=nrid;
@@ -135,7 +127,7 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p,
{
if(ntohl(*(pnrid+i))==p->cf->global->router_id)
{
- DBG("%s: Twoway received. %u\n", p->name, nrid);
+ DBG("%s: Twoway received from %I\n", p->name, nrid);
ospf_neigh_sm(n, INM_2WAYREC);
twoway=1;
break;
@@ -262,7 +254,7 @@ neighbor_timer_hook(timer *timer)
n=(struct ospf_neighbor *)timer->data;
ifa=n->ifa;
p=(struct proto *)(ifa->proto);
- debug("%s: Inactivity timer fired on interface %s for neighbor %u.\n",
+ debug("%s: Inactivity timer fired on interface %s for neighbor %I.\n",
p->name, ifa->iface->name, n->rid);
tm_stop(n->inactim);
rfree(n->inactim);