diff options
| author | Paul Saab <ps@FreeBSD.org> | 2004-06-25 04:11:26 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2004-06-25 04:11:26 +0000 |
| commit | 652178a12a44841d68ff3af020ed4d7a011c1d54 (patch) | |
| tree | 0e1da6b6a1fdbdf080f3ed5d316558ba13cca164 /sys/netinet/tcp_input.c | |
| parent | 37332f049f28da9f50816c466fe05e224f8768b1 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
| -rw-r--r-- | sys/netinet/tcp_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index bc28ab1be572..5b3732704736 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1057,7 +1057,7 @@ after_listen: * for incoming connections is handled in tcp_syncache. * XXX this is traditional behavior, may need to be cleaned up. */ - tcp_dooptions(tp,&to, optp, optlen, thflags & TH_SYN,th); + tcp_dooptions(tp, &to, optp, optlen, thflags & TH_SYN, th); if (thflags & TH_SYN) { if (to.to_flags & TOF_SCALE) { tp->t_flags |= TF_RCVD_SCALE; @@ -1084,7 +1084,7 @@ after_listen: if (tp->sack_enable) { /* Delete stale (cumulatively acked) SACK holes */ tcp_del_sackholes(tp, th); - tp->rcv_laststart = th->th_seq; /* last rec'vd segment*/ + tp->rcv_laststart = th->th_seq; /* last recv'd segment*/ tp->rcv_lastend = th->th_seq + tlen; } @@ -2579,7 +2579,7 @@ static void tcp_dooptions(tp, to, cp, cnt, is_syn, th) struct tcpcb *tp; struct tcpopt *to; - u_char *cp; + u_char *cp; int cnt; int is_syn; struct tcphdr *th; |
