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