2 implementations of StreamTimeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
78public long StreamTimeoutTimestamp { get; set; }
Internal\Http3\Http3Stream.cs (1)
75public long StreamTimeoutTimestamp { get; set; }
2 writes to StreamTimeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (2)
290stream.StreamTimeoutTimestamp = expiration >= 0 ? expiration : long.MaxValue; 315stream.StreamTimeoutTimestamp = TimeoutControl.GetResponseDrainDeadline(timestamp, minDataRate);
6 references to StreamTimeoutTimestamp
InMemory.FunctionalTests (2)
Http3\Http3TimeoutTests.cs (2)
147Assert.Equal(timeProvider.GetTimestamp(timestamp, limits.RequestHeadersTimeout), serverRequestStream.StreamTimeoutTimestamp); 270Assert.Equal(timeProvider.GetTimestamp(timestamp, limits.RequestHeadersTimeout), serverInboundControlStream.StreamTimeoutTimestamp);
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3Connection.cs (4)
286if (stream.StreamTimeoutTimestamp == default) 293if (stream.StreamTimeoutTimestamp < timestamp) 313if (stream.StreamTimeoutTimestamp == default) 318if (stream.StreamTimeoutTimestamp < timestamp)