2 writes to serrRtt
System.ServiceModel (2)
System\ServiceModel\Channels\TransmissionStrategy.cs (2)
104this.serrRtt = this.meanRtt >> 1; 840this.serrRtt = Math.Min(this.serrRtt + ((Math.Abs(error) - this.serrRtt) >> Constants.Gain), Constants.MaxSerrRtt);
4 references to serrRtt
System.ServiceModel (4)
System\ServiceModel\Channels\TransmissionStrategy.cs (4)
107this.timeout = Math.Max(((200 << Constants.TimeMultiplier) * 2) + this.meanRtt, this.meanRtt + (this.serrRtt << Constants.ChebychevFactor)); 840this.serrRtt = Math.Min(this.serrRtt + ((Math.Abs(error) - this.serrRtt) >> Constants.Gain), Constants.MaxSerrRtt); 842this.timeout = Math.Max(((200 << Constants.TimeMultiplier) * 2) + this.meanRtt, this.meanRtt + (this.serrRtt << Constants.ChebychevFactor));