diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-28 21:16:04 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-28 21:16:04 +0200 |
commit | f7c0525edcffc6c85d0e526c4c9741b06fc521d2 (patch) | |
tree | 6ce5a3616223e93ac53175327b3ec2c64ba1be05 /proto/ospf | |
parent | d150c6379c03a9df98ff5dd53a6442a10713b571 (diff) | |
download | bird-f7c0525edcffc6c85d0e526c4c9741b06fc521d2.tar bird-f7c0525edcffc6c85d0e526c4c9741b06fc521d2.zip |
get_route_info() added.
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/ospf.c | 26 | ||||
-rw-r--r-- | proto/ospf/rt.c | 2 |
2 files changed, 21 insertions, 7 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index dd7ffab..bc7d974 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -197,12 +197,24 @@ ospf_get_status(struct proto *p, byte *buf) } } +static void +ospf_get_route_info(rte *rte, byte *buf, ea_list *attrs) +{ + char met=' '; + + if(rte->u.ospf.type=='E') met='1'; + if(rte->u.ospf.metric2!=0) met='2'; + buf += bsprintf(buf, " %c%c %d", rte->u.ospf.type, met, + (rte->u.ospf.metric2==0) ? rte->u.ospf.metric1 : rte->u.ospf.metric2); +} + struct protocol proto_ospf = { - name: "OSPF", - template: "ospf%d", - init: ospf_init, - dump: ospf_dump, - start: ospf_start, - shutdown: ospf_shutdown, - get_status: ospf_get_status + name: "OSPF", + template: "ospf%d", + init: ospf_init, + dump: ospf_dump, + start: ospf_start, + shutdown: ospf_shutdown, + get_route_info: ospf_get_route_info, + get_status: ospf_get_status }; diff --git a/proto/ospf/rt.c b/proto/ospf/rt.c index d50e438..6b4c18f 100644 --- a/proto/ospf/rt.c +++ b/proto/ospf/rt.c @@ -229,6 +229,7 @@ again: e->u.ospf.metric1=nf->metric; e->u.ospf.metric2=0; e->u.ospf.tag=0; /* FIXME Some config? */ + e->u.ospf.type='I'; e->pflags = 0; e->net=ne; e->pref = p->preference; @@ -448,6 +449,7 @@ noch: e->u.ospf.metric1=nf->metric; e->u.ospf.metric2=nf->metric2; e->u.ospf.tag=0; /* FIXME Some config? */ + e->u.ospf.type='E'; e->pflags = 0; e->net=ne; e->pref = p->preference; |