13 references to FLOW_CONTROL_ERROR
InMemory.FunctionalTests (7)
Http2\Http2ConnectionTests.cs (7)
1869
expectedErrorCode: Http2ErrorCode.
FLOW_CONTROL_ERROR
,
1900
expectedErrorCode: 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
))]
3881
expectedErrorCode: Http2ErrorCode.
FLOW_CONTROL_ERROR
,
4553
expectedErrorCode: Http2ErrorCode.
FLOW_CONTROL_ERROR
,
4572
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);
1167
throw new Http2StreamErrorException(_incomingFrame.StreamId, CoreStrings.Http2ErrorWindowUpdateSizeInvalid, Http2ErrorCode.
FLOW_CONTROL_ERROR
);
Internal\Http2\Http2FrameWriter.cs (1)
353
const Http2ErrorCode http2ErrorCode = Http2ErrorCode.
FLOW_CONTROL_ERROR
;