From a4c2ee717cf42bb53688c18840bd7294b6bf61dd Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Mon, 9 Aug 1999 18:34:08 +0000 Subject: Bug fix in checksum calculation. --- proto/ospf/ospf.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'proto/ospf') diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 48c6e03..4a209f2 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -496,10 +496,7 @@ ospf_tx_hook(sock *sk) ifa=(struct ospf_iface *)(sk->data); p=(struct proto *)(ifa->proto); - DBG(p->name); - DBG(": TX_Hook called on interface "); - DBG(sk->iface->name); - DBG(".\n"); + DBG("%s: TX_Hook called on interface %s\n", p->name,sk->iface->name); } void @@ -511,10 +508,7 @@ ospf_err_hook(sock *sk, int err) ifa=(struct ospf_iface *)(sk->data); p=(struct proto *)(ifa->proto); - DBG(p->name); - DBG(": Err_Hook called on interface "); - DBG(sk->iface->name); - DBG(".\n"); + DBG("%s: Err_Hook called on interface %s\n", p->name,sk->iface->name); } /* This will change ! */ @@ -606,6 +600,7 @@ fill_ospf_pkt_hdr(struct ospf_iface *ifa, void *buf, u8 h_type) pkt->routerid=htonl(p->cf->global->router_id); pkt->areaid=htonl(ifa->area); pkt->autype=htons(ifa->autype); + pkt->checksum=0; } void @@ -656,8 +651,9 @@ hello_timer_hook(timer *timer) op->length=ntohs(length); - /* Do authentification */ + /* FIXME Do authentification */ + /* Count checksum */ op->checksum=ipsum_calculate(op,sizeof(struct ospf_packet)-8, &(pkt->netmask),length-sizeof(struct ospf_packet),NULL); -- cgit v1.2.3