summaryrefslogtreecommitdiffstats
path: root/proto/ospf
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2000-04-18 21:22:49 +0200
committerOndrej Filip <feela@network.cz>2000-04-18 21:22:49 +0200
commit79f036ef6e9b2204528a41079c59a3a9ae9d50f5 (patch)
treeb6a43387a5c52dfc248f0319fc96fb1506ac862f /proto/ospf
parent4472402551a1cc8d760a4e980fdcd7a417e0796a (diff)
downloadbird-79f036ef6e9b2204528a41079c59a3a9ae9d50f5.tar
bird-79f036ef6e9b2204528a41079c59a3a9ae9d50f5.zip
Dump changes.
Diffstat (limited to 'proto/ospf')
-rw-r--r--proto/ospf/iface.c7
-rw-r--r--proto/ospf/neighbor.c8
-rw-r--r--proto/ospf/ospf.c4
-rw-r--r--proto/ospf/topology.c2
4 files changed, 16 insertions, 5 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c
index b0bb62a..d76aaae 100644
--- a/proto/ospf/iface.c
+++ b/proto/ospf/iface.c
@@ -11,6 +11,9 @@
char *ospf_is[]={ "down", "loop", "waiting", "point-to-point", "drother",
"backup", "dr" };
+char *ospf_ism[]={ "interface up", "wait timer fired", "backup seen",
+ "neighbor change", "loop indicated", "unloop indicated", "interface down"};
+
void
iface_chstate(struct ospf_iface *ifa, u8 state)
{
@@ -69,8 +72,8 @@ ospf_int_sm(struct ospf_iface *ifa, int event)
p=(struct proto *)(ifa->proto);
- DBG("%s: SM on iface %s. Event is %d.\n",
- p->name, ifa->iface->name, event);
+ DBG("%s: SM on iface %s. Event is \"%s\".\n",
+ p->name, ifa->iface->name, ospf_ism[event]);
switch(event)
{
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c
index 9576117..4565d4e 100644
--- a/proto/ospf/neighbor.c
+++ b/proto/ospf/neighbor.c
@@ -11,6 +11,11 @@
char *ospf_ns[]={"down", "attempt", "init", "2way", "exstart", "exchange",
"loading", "full"};
+const char *ospf_inm[]={ "hello received", "neighbor start", "2-way received",
+ "negotiation done", "exstart done", "bad ls request", "load done",
+ "adjacency ok?", "sequence mismatch", "1-way received", "kill neighbor",
+ "inactivity timer", "line down" };
+
void
neigh_chstate(struct ospf_neighbor *n, u8 state)
{
@@ -177,6 +182,9 @@ ospf_neigh_sm(struct ospf_neighbor *n, int event)
p=(struct proto *)(n->ifa->proto);
+ DBG("%s: Neighbor state machine for neighbor %I, event \"%s\".\n",
+ p->name, n->rid, ospf_inm[event]);
+
switch(event)
{
case INM_START:
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c
index a806de6..9c432b4 100644
--- a/proto/ospf/ospf.c
+++ b/proto/ospf/ospf.c
@@ -45,9 +45,9 @@ ospf_dump(struct proto *p)
WALK_LIST(NODE oa,po->area_list)
{
- debug("\n%s: LSA graph dump for area \"%d\" start:\n", p->name,oa->areaid);
+ debug("\n%s: LSA graph dump for area \"%I\" start:\n", p->name,oa->areaid);
ospf_top_dump(oa->gr);
- debug("%s: LSA graph dump for area \"%d\" finished\n\n", p->name,
+ debug("%s: LSA graph dump for area \"%I\" finished\n\n", p->name,
oa->areaid);
}
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c
index 4280e11..2200aa2 100644
--- a/proto/ospf/topology.c
+++ b/proto/ospf/topology.c
@@ -34,7 +34,7 @@ originate_rt_lsa_body(struct ospf_area *oa, u16 *length, struct proto_ospf *p)
struct top_hash_entry *old;
struct proto_ospf *po=(struct proto_ospf *)p;
- DBG("%s: Originating RT_lsa body for area \"%d\".\n", po->proto.name, oa->areaid);
+ DBG("%s: Originating RT_lsa body for area \"%I\".\n", po->proto.name, oa->areaid);
WALK_LIST (ifa, p->iface_list) i++;
{