Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64534
b: refs/heads/master
c: 2672287
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Aug 27, 2007
1 parent c2a44a0 commit 77095ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a96fb49be3dd2031f722bf32af6ed7db965b60f7
refs/heads/master: 26722873a460703e319462afa7ebb8ed3a036c07
10 changes: 9 additions & 1 deletion trunk/net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,15 @@ void tcp_update_metrics(struct sock *sk)
}
}

/* Numbers are taken from RFC2414. */
/* Numbers are taken from RFC3390.
*
* John Heffner states:
*
* The RFC specifies a window of no more than 4380 bytes
* unless 2*MSS > 4380. Reading the pseudocode in the RFC
* is a bit misleading because they use a clamp at 4380 bytes
* rather than use a multiplier in the relevant range.
*/
__u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst)
{
__u32 cwnd = (dst ? dst_metric(dst, RTAX_INITCWND) : 0);
Expand Down

0 comments on commit 77095ec

Please sign in to comment.