3 writes to _connectionWindow
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http2\Http2FrameWriter.cs (3)
159
_connectionWindow
= Http2PeerSettings.DefaultInitialWindowSize;
1065
_connectionWindow
-= bytes;
1105
_connectionWindow
+= bytes;
3 references to _connectionWindow
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http2\Http2FrameWriter.cs (3)
370
if (
_connectionWindow
== 0)
1057
return Math.Min(bytes,
_connectionWindow
);
1098
var maxUpdate = Http2PeerSettings.MaxWindowSize -
_connectionWindow
;