diff options
author | Ondrej Filip <feela@network.cz> | 2000-03-31 03:40:12 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-03-31 03:40:12 +0200 |
commit | 65e55e9cca38828980123ea64fe203d799a20810 (patch) | |
tree | bed7889ad901e8b47f73c6eb9ef48c7352864dd6 /proto/ospf | |
parent | 9f940976d10e6295f78adf4afb1868a7ed6cac73 (diff) | |
download | bird-65e55e9cca38828980123ea64fe203d799a20810.tar bird-65e55e9cca38828980123ea64fe203d799a20810.zip |
Checksum changes. Bug is still NOT fixed. :-(
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/topology.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c index 808fc7b..12eff1e 100644 --- a/proto/ospf/topology.c +++ b/proto/ospf/topology.c @@ -190,14 +190,13 @@ addifa_rtlsa(struct ospf_iface *ifa) oa->rt->lsa_body=NULL; lsa->age=0; lsa->sn=LSA_INITSEQNO; /* FIXME Check it latter */ - lsa->checksum=0; - lsa->checksum=ipsum_calculate(lsa,sizeof(struct ospf_lsa_header),NULL); ifa->oa=oa; DBG("%s: New OSPF area \"%d\" added.\n", po->proto.name, ifa->an); } oa->rt->lsa.length=make_rt_lsa(oa, po)+sizeof(struct ospf_lsa_header); - /*FIXME seq no++ */ + oa->rt->lsa.checksum=0; + oa->rt->lsa.checksum=ipsum_calculate(&(oa->rt->lsa.options),sizeof(struct ospf_lsa_header)-2,oa->rt->lsa_body,oa->rt->lsa.length-sizeof(struct ospf_lsa_header),NULL); /*FIXME lsa_flood(oa->rt) */ } |