patch-2.1.43 linux/net/ipv6/tcp_ipv6.c
Next file: linux/net/ipx/af_ipx.c
Previous file: linux/net/ipv6/af_inet6.c
Back to the patch index
Back to the overall index
- Lines: 29
- Date:
Thu Jun 12 16:22:11 1997
- Orig file:
v2.1.42/linux/net/ipv6/tcp_ipv6.c
- Orig date:
Tue May 13 22:41:24 1997
diff -u --recursive --new-file v2.1.42/linux/net/ipv6/tcp_ipv6.c linux/net/ipv6/tcp_ipv6.c
@@ -5,7 +5,7 @@
* Authors:
* Pedro Roque <roque@di.fc.ul.pt>
*
- * $Id: tcp_ipv6.c,v 1.31 1997/04/29 21:51:23 davem Exp $
+ * $Id: tcp_ipv6.c,v 1.32 1997/06/04 08:28:58 davem Exp $
*
* Based on:
* linux/net/ipv4/tcp.c
@@ -643,7 +643,6 @@
skb->end_seq = skb->seq + 1;
th->seq = ntohl(skb->seq);
th->ack_seq = htonl(req->rcv_isn + 1);
- th->doff = sizeof(*th)/4 + 1;
/* Don't offer more than they did.
* This way we don't have to memorize who said what.
@@ -669,8 +668,9 @@
th->window = htons(req->rcv_wnd);
tmp = tcp_syn_build_options(skb, req->mss, req->sack_ok, req->tstamp_ok,
- req->snd_wscale,req->rcv_wscale);
- th->doff = sizeof(*th)/4 + (tmp>>2);
+ req->wscale_ok,req->rcv_wscale);
+ skb->csum = 0;
+ th->doff = (sizeof(*th) + tmp)>>2;
th->check = tcp_v6_check(th, sizeof(*th) + tmp,
&req->af.v6_req.loc_addr, &req->af.v6_req.rmt_addr,
csum_partial((char *)th, sizeof(*th)+tmp, skb->csum));
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov