Use min packets threshold for NACK based congestion signal.

This commit is contained in:
boks1971
2023-07-13 00:18:01 +05:30
parent 8dc2c005c3
commit 0bf93042ed
3 changed files with 6 additions and 5 deletions
@@ -46,6 +46,7 @@ var (
EstimateDownwardTrendThreshold: 0.0,
EstimateCollapseThreshold: 0,
EstimateValidityWindow: 10 * time.Second,
NackMinPackets: 0,
NackWindowMinDuration: 500 * time.Millisecond,
NackWindowMaxDuration: 1 * time.Second,
NackRatioThreshold: 0.04,
@@ -57,6 +58,7 @@ var (
EstimateDownwardTrendThreshold: -0.5,
EstimateCollapseThreshold: 500 * time.Millisecond,
EstimateValidityWindow: 10 * time.Second,
NackMinPackets: 50,
NackWindowMinDuration: 1 * time.Second,
NackWindowMaxDuration: 2 * time.Second,
NackRatioThreshold: 0.08,