2 writes to slowStartThreshold
System.ServiceModel (2)
System\ServiceModel\Channels\TransmissionStrategy.cs (2)
106
this.
slowStartThreshold
= maxWindowSize;
359
this.
slowStartThreshold
= Math.Max(1, this.windowSize >> 1);
4 references to slowStartThreshold
System.ServiceModel (4)
System\ServiceModel\Channels\TransmissionStrategy.cs (4)
746
if (this.windowSize <= this.
slowStartThreshold
)
748
this.windowSize = Math.Min(this.maxWindowSize, Math.Min(this.
slowStartThreshold
+ 1, this.windowSize + (int)slide));
760
int segmentSize = Math.Max(1, (this.lossWindowSize - this.
slowStartThreshold
) / 8);
761
int windowGrowthAckThreshold = ((this.windowSize - this.
slowStartThreshold
) * this.windowSize) / segmentSize;