diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-08-16 18:32:07 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-08-16 18:32:07 +0000 |
| commit | a4f757cd5dc1421d90d72a34853247e0c2c18cce (patch) | |
| tree | 6046e1d576e7bbc883254e0b133fbd6b383544f2 /sys/netinet/tcp_sack.c | |
| parent | bf90c6ee99f84b5fc79be6c35ec15f783d6949b8 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_sack.c')
| -rw-r--r-- | sys/netinet/tcp_sack.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/netinet/tcp_sack.c b/sys/netinet/tcp_sack.c index 8dfa6829c9d5..52c1980af42d 100644 --- a/sys/netinet/tcp_sack.c +++ b/sys/netinet/tcp_sack.c @@ -71,10 +71,10 @@ * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgements: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * This product includes software developed at the Information - * Technology Division, US Naval Research Laboratory. + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * This product includes software developed at the Information + * Technology Division, US Naval Research Laboratory. * 4. Neither the name of the NRL nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. @@ -494,9 +494,9 @@ tcp_sack_partialack(tp, th) * Set snd_cwnd to one segment beyond acknowledged offset * (tp->snd_una has not yet been updated when this function is called.) */ - /* - * Should really be - * min(tp->snd_cwnd, tp->t_maxseg + (th->th_ack - tp->snd_una)) + /* + * Should really be + * min(tp->snd_cwnd, tp->t_maxseg + (th->th_ack - tp->snd_una)) */ tp->snd_cwnd = tp->t_maxseg + (th->th_ack - tp->snd_una); tp->t_flags |= TF_ACKNOW; |
