13 references to FLOW_CONTROL_ERROR
InMemory.FunctionalTests (7)
Http2\Http2ConnectionTests.cs (7)
1869expectedErrorCode: Http2ErrorCode.FLOW_CONTROL_ERROR, 1900expectedErrorCode: Http2ErrorCode.FLOW_CONTROL_ERROR, 3780[InlineData((int)(Http2SettingsParameter.SETTINGS_INITIAL_WINDOW_SIZE), (uint)int.MaxValue + 1, (int)(Http2ErrorCode.FLOW_CONTROL_ERROR))] 3781[InlineData((int)(Http2SettingsParameter.SETTINGS_INITIAL_WINDOW_SIZE), uint.MaxValue, (int)(Http2ErrorCode.FLOW_CONTROL_ERROR))] 3881expectedErrorCode: Http2ErrorCode.FLOW_CONTROL_ERROR, 4553expectedErrorCode: Http2ErrorCode.FLOW_CONTROL_ERROR, 4572expectedErrorCode: Http2ErrorCode.FLOW_CONTROL_ERROR,
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http2\FlowControl\InputFlowControl.cs (1)
56throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorFlowControlWindowExceeded, Http2ErrorCode.FLOW_CONTROL_ERROR, ConnectionEndReason.FlowControlWindowExceeded);
Internal\Http2\Http2Connection.cs (4)
1037throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorInitialWindowSizeInvalid, Http2ErrorCode.FLOW_CONTROL_ERROR, ConnectionEndReason.InvalidSettings); 1056? Http2ErrorCode.FLOW_CONTROL_ERROR 1154throw new Http2ConnectionErrorException(CoreStrings.Http2ErrorWindowUpdateSizeInvalid, Http2ErrorCode.FLOW_CONTROL_ERROR, ConnectionEndReason.InvalidWindowUpdateSize); 1167throw new Http2StreamErrorException(_incomingFrame.StreamId, CoreStrings.Http2ErrorWindowUpdateSizeInvalid, Http2ErrorCode.FLOW_CONTROL_ERROR);
Internal\Http2\Http2FrameWriter.cs (1)
353const Http2ErrorCode http2ErrorCode = Http2ErrorCode.FLOW_CONTROL_ERROR;