reject transport parameters with too large stream counts

This commit is contained in:
Marten Seemann 2019-03-29 09:39:02 +01:00
parent 7b02b87026
commit 51c9c42adc
4 changed files with 32 additions and 13 deletions

View file

@ -197,9 +197,11 @@ func (mr *MockStreamManagerMockRecorder) OpenUniStreamSync() *gomock.Call {
}
// UpdateLimits mocks base method
func (m *MockStreamManager) UpdateLimits(arg0 *handshake.TransportParameters) {
func (m *MockStreamManager) UpdateLimits(arg0 *handshake.TransportParameters) error {
m.ctrl.T.Helper()
m.ctrl.Call(m, "UpdateLimits", arg0)
ret := m.ctrl.Call(m, "UpdateLimits", arg0)
ret0, _ := ret[0].(error)
return ret0
}
// UpdateLimits indicates an expected call of UpdateLimits