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