diff options
author | Ondrej Filip <feela@network.cz> | 2000-06-03 03:29:00 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-06-03 03:29:00 +0200 |
commit | 89d6782dd1a7775a292db3b2b622c8a48dbd757c (patch) | |
tree | 5f5c0a7bc59c95289b3bda941ad3dab78abfe329 /proto/ospf/ospf.c | |
parent | b36a0a799c751864f65bc3384df301448b54f3bf (diff) | |
download | bird-89d6782dd1a7775a292db3b2b622c8a48dbd757c.tar bird-89d6782dd1a7775a292db3b2b622c8a48dbd757c.zip |
interface {} added.
Diffstat (limited to 'proto/ospf/ospf.c')
-rw-r--r-- | proto/ospf/ospf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 7de37bf..80a0cca 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -63,6 +63,7 @@ ospf_init(struct proto_config *c) struct proto_ospf *po=(struct proto_ospf *)p; struct ospf_config *oc=(struct ospf_config *)c; struct ospf_area_config *ac; + struct ospf_iface_patt *patt; debug("OSPF: Init requested.\n"); p->import_control = ospf_import_control; @@ -77,6 +78,9 @@ ospf_init(struct proto_config *c) WALK_LIST(ac, oc->area_list) { debug("OSPF: area: %I, stub=%u tick=%u\n", ac->areaid, ac->stub, ac->tick); + WALK_LIST(patt, ac->patt_list) + debug("Patt cost=%d hello=%d ret=%d\n",patt->cost, patt->helloint, + patt->rxmtint); } return p; |