mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-24 07:40:52 +00:00
tcp: fix comment
Make the comment consistent with the code. Reviewed by: rscheff MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D44611
This commit is contained in:
parent
22c0988431
commit
5a268d8688
@ -902,10 +902,10 @@ struct in_conninfo;
|
||||
* and thus an "ALPHA" of 0.875. rttvar has 2 bits to the right of the
|
||||
* binary point, and is smoothed with an ALPHA of 0.75.
|
||||
*/
|
||||
#define TCP_RTT_SCALE 32 /* multiplier for srtt; 3 bits frac. */
|
||||
#define TCP_RTT_SHIFT 5 /* shift for srtt; 3 bits frac. */
|
||||
#define TCP_RTTVAR_SCALE 16 /* multiplier for rttvar; 2 bits */
|
||||
#define TCP_RTTVAR_SHIFT 4 /* shift for rttvar; 2 bits */
|
||||
#define TCP_RTT_SCALE 32 /* multiplier for srtt; 5 bits frac. */
|
||||
#define TCP_RTT_SHIFT 5 /* shift for srtt; 5 bits frac. */
|
||||
#define TCP_RTTVAR_SCALE 16 /* multiplier for rttvar; 4 bits */
|
||||
#define TCP_RTTVAR_SHIFT 4 /* shift for rttvar; 4 bits */
|
||||
#define TCP_DELTA_SHIFT 2 /* see tcp_input.c */
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user