There was an error while loading. Please reload this page.
1 parent d7101a3 commit 559ada6Copy full SHA for 559ada6
src/Servers/Kestrel/Core/src/Internal/Http2/Http2Connection.cs
@@ -1086,6 +1086,8 @@ private Task ProcessPingFrameAsync(in ReadOnlySequence<byte> payload)
1086
if (_incomingFrame.PingAck)
1087
{
1088
// TODO: verify that payload is equal to the outgoing PING frame
1089
+ // This will be particularly important if we implement dynamic window sizing
1090
+ // (https://github.com/dotnet/aspnetcore/issues/53657).
1091
return Task.CompletedTask;
1092
}
1093
0 commit comments