mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
rename the IdleConnectionStateLifetime to RemoteIdleTimeout
This commit is contained in:
parent
a8b603b7bf
commit
0ffb64b5d7
8 changed files with 106 additions and 107 deletions
|
@ -440,7 +440,7 @@ var _ = Describe("Client Crypto Setup", func() {
|
||||||
shloMap[TagICSL] = []byte{3, 0, 0, 0} // 3 seconds
|
shloMap[TagICSL] = []byte{3, 0, 0, 0} // 3 seconds
|
||||||
err := cs.handleSHLOMessage(shloMap)
|
err := cs.handleSHLOMessage(shloMap)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(cs.params.GetIdleConnectionStateLifetime()).To(Equal(3 * time.Second))
|
Expect(cs.params.GetRemoteIdleTimeout()).To(Equal(3 * time.Second))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("errors if it can't read a connection parameter", func() {
|
It("errors if it can't read a connection parameter", func() {
|
||||||
|
|
|
@ -20,7 +20,7 @@ type ParamsNegotiator interface {
|
||||||
GetMaxOutgoingStreams() uint32
|
GetMaxOutgoingStreams() uint32
|
||||||
GetMaxIncomingStreams() uint32
|
GetMaxIncomingStreams() uint32
|
||||||
// get the idle timeout that was sent by the peer
|
// get the idle timeout that was sent by the peer
|
||||||
GetIdleConnectionStateLifetime() time.Duration
|
GetRemoteIdleTimeout() time.Duration
|
||||||
// determines if the client requests omission of connection IDs.
|
// determines if the client requests omission of connection IDs.
|
||||||
OmitConnectionID() bool
|
OmitConnectionID() bool
|
||||||
}
|
}
|
||||||
|
@ -132,7 +132,7 @@ func (h *paramsNegotiatorBase) GetMaxIncomingStreams() uint32 {
|
||||||
return utils.MaxUint32(uint32(maxStreams)+protocol.MaxStreamsMinimumIncrement, uint32(float64(maxStreams)*protocol.MaxStreamsMultiplier))
|
return utils.MaxUint32(uint32(maxStreams)+protocol.MaxStreamsMinimumIncrement, uint32(float64(maxStreams)*protocol.MaxStreamsMultiplier))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *paramsNegotiatorBase) GetIdleConnectionStateLifetime() time.Duration {
|
func (h *paramsNegotiatorBase) GetRemoteIdleTimeout() time.Duration {
|
||||||
h.mutex.RLock()
|
h.mutex.RLock()
|
||||||
defer h.mutex.RUnlock()
|
defer h.mutex.RUnlock()
|
||||||
return h.remoteIdleTimeout
|
return h.remoteIdleTimeout
|
||||||
|
|
|
@ -218,7 +218,7 @@ var _ = Describe("Params Negotiator (for gQUIC)", func() {
|
||||||
}
|
}
|
||||||
err := pn.SetFromMap(values)
|
err := pn.SetFromMap(values)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(pn.GetIdleConnectionStateLifetime()).To(Equal(10 * time.Second))
|
Expect(pn.GetRemoteIdleTimeout()).To(Equal(10 * time.Second))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("errors when given an invalid value", func() {
|
It("errors when given an invalid value", func() {
|
||||||
|
|
|
@ -71,7 +71,7 @@ var _ = Describe("Params Negotiator (for TLS)", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(pn.GetSendStreamFlowControlWindow()).To(Equal(protocol.ByteCount(0x11223344)))
|
Expect(pn.GetSendStreamFlowControlWindow()).To(Equal(protocol.ByteCount(0x11223344)))
|
||||||
Expect(pn.GetSendConnectionFlowControlWindow()).To(Equal(protocol.ByteCount(0x22334455)))
|
Expect(pn.GetSendConnectionFlowControlWindow()).To(Equal(protocol.ByteCount(0x22334455)))
|
||||||
Expect(pn.GetIdleConnectionStateLifetime()).To(Equal(0x1337 * time.Second))
|
Expect(pn.GetRemoteIdleTimeout()).To(Equal(0x1337 * time.Second))
|
||||||
Expect(pn.OmitConnectionID()).To(BeFalse())
|
Expect(pn.OmitConnectionID()).To(BeFalse())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Code generated by MockGen. DO NOT EDIT.
|
// Code generated by MockGen. DO NOT EDIT.
|
||||||
// Source: ../flowcontrol/interface.go
|
// Source: ../flowcontrol/interface.go
|
||||||
|
|
||||||
|
// Package mocks_fc is a generated GoMock package.
|
||||||
package mocks_fc
|
package mocks_fc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -30,137 +31,137 @@ func NewMockFlowControlManager(ctrl *gomock.Controller) *MockFlowControlManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// EXPECT returns an object that allows the caller to indicate expected use
|
// EXPECT returns an object that allows the caller to indicate expected use
|
||||||
func (_m *MockFlowControlManager) EXPECT() *MockFlowControlManagerMockRecorder {
|
func (m *MockFlowControlManager) EXPECT() *MockFlowControlManagerMockRecorder {
|
||||||
return _m.recorder
|
return m.recorder
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewStream mocks base method
|
// NewStream mocks base method
|
||||||
func (_m *MockFlowControlManager) NewStream(streamID protocol.StreamID, contributesToConnectionFlow bool) {
|
func (m *MockFlowControlManager) NewStream(streamID protocol.StreamID, contributesToConnectionFlow bool) {
|
||||||
_m.ctrl.Call(_m, "NewStream", streamID, contributesToConnectionFlow)
|
m.ctrl.Call(m, "NewStream", streamID, contributesToConnectionFlow)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewStream indicates an expected call of NewStream
|
// NewStream indicates an expected call of NewStream
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) NewStream(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) NewStream(streamID, contributesToConnectionFlow interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "NewStream", reflect.TypeOf((*MockFlowControlManager)(nil).NewStream), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "NewStream", reflect.TypeOf((*MockFlowControlManager)(nil).NewStream), streamID, contributesToConnectionFlow)
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemoveStream mocks base method
|
// RemoveStream mocks base method
|
||||||
func (_m *MockFlowControlManager) RemoveStream(streamID protocol.StreamID) {
|
func (m *MockFlowControlManager) RemoveStream(streamID protocol.StreamID) {
|
||||||
_m.ctrl.Call(_m, "RemoveStream", streamID)
|
m.ctrl.Call(m, "RemoveStream", streamID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemoveStream indicates an expected call of RemoveStream
|
// RemoveStream indicates an expected call of RemoveStream
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) RemoveStream(arg0 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) RemoveStream(streamID interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "RemoveStream", reflect.TypeOf((*MockFlowControlManager)(nil).RemoveStream), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemoveStream", reflect.TypeOf((*MockFlowControlManager)(nil).RemoveStream), streamID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResetStream mocks base method
|
// ResetStream mocks base method
|
||||||
func (_m *MockFlowControlManager) ResetStream(streamID protocol.StreamID, byteOffset protocol.ByteCount) error {
|
func (m *MockFlowControlManager) ResetStream(streamID protocol.StreamID, byteOffset protocol.ByteCount) error {
|
||||||
ret := _m.ctrl.Call(_m, "ResetStream", streamID, byteOffset)
|
ret := m.ctrl.Call(m, "ResetStream", streamID, byteOffset)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResetStream indicates an expected call of ResetStream
|
// ResetStream indicates an expected call of ResetStream
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) ResetStream(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) ResetStream(streamID, byteOffset interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "ResetStream", reflect.TypeOf((*MockFlowControlManager)(nil).ResetStream), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResetStream", reflect.TypeOf((*MockFlowControlManager)(nil).ResetStream), streamID, byteOffset)
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateHighestReceived mocks base method
|
// UpdateHighestReceived mocks base method
|
||||||
func (_m *MockFlowControlManager) UpdateHighestReceived(streamID protocol.StreamID, byteOffset protocol.ByteCount) error {
|
func (m *MockFlowControlManager) UpdateHighestReceived(streamID protocol.StreamID, byteOffset protocol.ByteCount) error {
|
||||||
ret := _m.ctrl.Call(_m, "UpdateHighestReceived", streamID, byteOffset)
|
ret := m.ctrl.Call(m, "UpdateHighestReceived", streamID, byteOffset)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateHighestReceived indicates an expected call of UpdateHighestReceived
|
// UpdateHighestReceived indicates an expected call of UpdateHighestReceived
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) UpdateHighestReceived(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) UpdateHighestReceived(streamID, byteOffset interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "UpdateHighestReceived", reflect.TypeOf((*MockFlowControlManager)(nil).UpdateHighestReceived), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateHighestReceived", reflect.TypeOf((*MockFlowControlManager)(nil).UpdateHighestReceived), streamID, byteOffset)
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddBytesRead mocks base method
|
// AddBytesRead mocks base method
|
||||||
func (_m *MockFlowControlManager) AddBytesRead(streamID protocol.StreamID, n protocol.ByteCount) error {
|
func (m *MockFlowControlManager) AddBytesRead(streamID protocol.StreamID, n protocol.ByteCount) error {
|
||||||
ret := _m.ctrl.Call(_m, "AddBytesRead", streamID, n)
|
ret := m.ctrl.Call(m, "AddBytesRead", streamID, n)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddBytesRead indicates an expected call of AddBytesRead
|
// AddBytesRead indicates an expected call of AddBytesRead
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) AddBytesRead(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) AddBytesRead(streamID, n interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "AddBytesRead", reflect.TypeOf((*MockFlowControlManager)(nil).AddBytesRead), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddBytesRead", reflect.TypeOf((*MockFlowControlManager)(nil).AddBytesRead), streamID, n)
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetWindowUpdates mocks base method
|
// GetWindowUpdates mocks base method
|
||||||
func (_m *MockFlowControlManager) GetWindowUpdates() []flowcontrol.WindowUpdate {
|
func (m *MockFlowControlManager) GetWindowUpdates() []flowcontrol.WindowUpdate {
|
||||||
ret := _m.ctrl.Call(_m, "GetWindowUpdates")
|
ret := m.ctrl.Call(m, "GetWindowUpdates")
|
||||||
ret0, _ := ret[0].([]flowcontrol.WindowUpdate)
|
ret0, _ := ret[0].([]flowcontrol.WindowUpdate)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetWindowUpdates indicates an expected call of GetWindowUpdates
|
// GetWindowUpdates indicates an expected call of GetWindowUpdates
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) GetWindowUpdates() *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) GetWindowUpdates() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetWindowUpdates", reflect.TypeOf((*MockFlowControlManager)(nil).GetWindowUpdates))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWindowUpdates", reflect.TypeOf((*MockFlowControlManager)(nil).GetWindowUpdates))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveWindow mocks base method
|
// GetReceiveWindow mocks base method
|
||||||
func (_m *MockFlowControlManager) GetReceiveWindow(streamID protocol.StreamID) (protocol.ByteCount, error) {
|
func (m *MockFlowControlManager) GetReceiveWindow(streamID protocol.StreamID) (protocol.ByteCount, error) {
|
||||||
ret := _m.ctrl.Call(_m, "GetReceiveWindow", streamID)
|
ret := m.ctrl.Call(m, "GetReceiveWindow", streamID)
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
ret1, _ := ret[1].(error)
|
ret1, _ := ret[1].(error)
|
||||||
return ret0, ret1
|
return ret0, ret1
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveWindow indicates an expected call of GetReceiveWindow
|
// GetReceiveWindow indicates an expected call of GetReceiveWindow
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) GetReceiveWindow(arg0 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) GetReceiveWindow(streamID interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetReceiveWindow", reflect.TypeOf((*MockFlowControlManager)(nil).GetReceiveWindow), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetReceiveWindow", reflect.TypeOf((*MockFlowControlManager)(nil).GetReceiveWindow), streamID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddBytesSent mocks base method
|
// AddBytesSent mocks base method
|
||||||
func (_m *MockFlowControlManager) AddBytesSent(streamID protocol.StreamID, n protocol.ByteCount) error {
|
func (m *MockFlowControlManager) AddBytesSent(streamID protocol.StreamID, n protocol.ByteCount) error {
|
||||||
ret := _m.ctrl.Call(_m, "AddBytesSent", streamID, n)
|
ret := m.ctrl.Call(m, "AddBytesSent", streamID, n)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddBytesSent indicates an expected call of AddBytesSent
|
// AddBytesSent indicates an expected call of AddBytesSent
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) AddBytesSent(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) AddBytesSent(streamID, n interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "AddBytesSent", reflect.TypeOf((*MockFlowControlManager)(nil).AddBytesSent), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddBytesSent", reflect.TypeOf((*MockFlowControlManager)(nil).AddBytesSent), streamID, n)
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendWindowSize mocks base method
|
// SendWindowSize mocks base method
|
||||||
func (_m *MockFlowControlManager) SendWindowSize(streamID protocol.StreamID) (protocol.ByteCount, error) {
|
func (m *MockFlowControlManager) SendWindowSize(streamID protocol.StreamID) (protocol.ByteCount, error) {
|
||||||
ret := _m.ctrl.Call(_m, "SendWindowSize", streamID)
|
ret := m.ctrl.Call(m, "SendWindowSize", streamID)
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
ret1, _ := ret[1].(error)
|
ret1, _ := ret[1].(error)
|
||||||
return ret0, ret1
|
return ret0, ret1
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendWindowSize indicates an expected call of SendWindowSize
|
// SendWindowSize indicates an expected call of SendWindowSize
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) SendWindowSize(arg0 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) SendWindowSize(streamID interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "SendWindowSize", reflect.TypeOf((*MockFlowControlManager)(nil).SendWindowSize), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendWindowSize", reflect.TypeOf((*MockFlowControlManager)(nil).SendWindowSize), streamID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemainingConnectionWindowSize mocks base method
|
// RemainingConnectionWindowSize mocks base method
|
||||||
func (_m *MockFlowControlManager) RemainingConnectionWindowSize() protocol.ByteCount {
|
func (m *MockFlowControlManager) RemainingConnectionWindowSize() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "RemainingConnectionWindowSize")
|
ret := m.ctrl.Call(m, "RemainingConnectionWindowSize")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemainingConnectionWindowSize indicates an expected call of RemainingConnectionWindowSize
|
// RemainingConnectionWindowSize indicates an expected call of RemainingConnectionWindowSize
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) RemainingConnectionWindowSize() *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) RemainingConnectionWindowSize() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "RemainingConnectionWindowSize", reflect.TypeOf((*MockFlowControlManager)(nil).RemainingConnectionWindowSize))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RemainingConnectionWindowSize", reflect.TypeOf((*MockFlowControlManager)(nil).RemainingConnectionWindowSize))
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateWindow mocks base method
|
// UpdateWindow mocks base method
|
||||||
func (_m *MockFlowControlManager) UpdateWindow(streamID protocol.StreamID, offset protocol.ByteCount) (bool, error) {
|
func (m *MockFlowControlManager) UpdateWindow(streamID protocol.StreamID, offset protocol.ByteCount) (bool, error) {
|
||||||
ret := _m.ctrl.Call(_m, "UpdateWindow", streamID, offset)
|
ret := m.ctrl.Call(m, "UpdateWindow", streamID, offset)
|
||||||
ret0, _ := ret[0].(bool)
|
ret0, _ := ret[0].(bool)
|
||||||
ret1, _ := ret[1].(error)
|
ret1, _ := ret[1].(error)
|
||||||
return ret0, ret1
|
return ret0, ret1
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateWindow indicates an expected call of UpdateWindow
|
// UpdateWindow indicates an expected call of UpdateWindow
|
||||||
func (_mr *MockFlowControlManagerMockRecorder) UpdateWindow(arg0, arg1 interface{}) *gomock.Call {
|
func (mr *MockFlowControlManagerMockRecorder) UpdateWindow(streamID, offset interface{}) *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "UpdateWindow", reflect.TypeOf((*MockFlowControlManager)(nil).UpdateWindow), arg0, arg1)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateWindow", reflect.TypeOf((*MockFlowControlManager)(nil).UpdateWindow), streamID, offset)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
// Code generated by MockGen. DO NOT EDIT.
|
// Code generated by MockGen. DO NOT EDIT.
|
||||||
// Source: ../handshake/params_negotiator_base.go
|
// Source: ../handshake/params_negotiator_base.go
|
||||||
|
|
||||||
|
// Package mocks is a generated GoMock package.
|
||||||
package mocks
|
package mocks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
reflect "reflect"
|
|
||||||
time "time"
|
|
||||||
|
|
||||||
gomock "github.com/golang/mock/gomock"
|
gomock "github.com/golang/mock/gomock"
|
||||||
protocol "github.com/lucas-clemente/quic-go/internal/protocol"
|
protocol "github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
|
reflect "reflect"
|
||||||
|
time "time"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MockParamsNegotiator is a mock of ParamsNegotiator interface
|
// MockParamsNegotiator is a mock of ParamsNegotiator interface
|
||||||
|
@ -30,126 +30,126 @@ func NewMockParamsNegotiator(ctrl *gomock.Controller) *MockParamsNegotiator {
|
||||||
}
|
}
|
||||||
|
|
||||||
// EXPECT returns an object that allows the caller to indicate expected use
|
// EXPECT returns an object that allows the caller to indicate expected use
|
||||||
func (_m *MockParamsNegotiator) EXPECT() *MockParamsNegotiatorMockRecorder {
|
func (m *MockParamsNegotiator) EXPECT() *MockParamsNegotiatorMockRecorder {
|
||||||
return _m.recorder
|
return m.recorder
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSendStreamFlowControlWindow mocks base method
|
// GetSendStreamFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetSendStreamFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetSendStreamFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetSendStreamFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetSendStreamFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSendStreamFlowControlWindow indicates an expected call of GetSendStreamFlowControlWindow
|
// GetSendStreamFlowControlWindow indicates an expected call of GetSendStreamFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetSendStreamFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetSendStreamFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetSendStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetSendStreamFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSendStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetSendStreamFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSendConnectionFlowControlWindow mocks base method
|
// GetSendConnectionFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetSendConnectionFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetSendConnectionFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetSendConnectionFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetSendConnectionFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSendConnectionFlowControlWindow indicates an expected call of GetSendConnectionFlowControlWindow
|
// GetSendConnectionFlowControlWindow indicates an expected call of GetSendConnectionFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetSendConnectionFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetSendConnectionFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetSendConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetSendConnectionFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSendConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetSendConnectionFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveStreamFlowControlWindow mocks base method
|
// GetReceiveStreamFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetReceiveStreamFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetReceiveStreamFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetReceiveStreamFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetReceiveStreamFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveStreamFlowControlWindow indicates an expected call of GetReceiveStreamFlowControlWindow
|
// GetReceiveStreamFlowControlWindow indicates an expected call of GetReceiveStreamFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetReceiveStreamFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetReceiveStreamFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetReceiveStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetReceiveStreamFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetReceiveStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetReceiveStreamFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxReceiveStreamFlowControlWindow mocks base method
|
// GetMaxReceiveStreamFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetMaxReceiveStreamFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetMaxReceiveStreamFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetMaxReceiveStreamFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetMaxReceiveStreamFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxReceiveStreamFlowControlWindow indicates an expected call of GetMaxReceiveStreamFlowControlWindow
|
// GetMaxReceiveStreamFlowControlWindow indicates an expected call of GetMaxReceiveStreamFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetMaxReceiveStreamFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetMaxReceiveStreamFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetMaxReceiveStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxReceiveStreamFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMaxReceiveStreamFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxReceiveStreamFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveConnectionFlowControlWindow mocks base method
|
// GetReceiveConnectionFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetReceiveConnectionFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetReceiveConnectionFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetReceiveConnectionFlowControlWindow indicates an expected call of GetReceiveConnectionFlowControlWindow
|
// GetReceiveConnectionFlowControlWindow indicates an expected call of GetReceiveConnectionFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetReceiveConnectionFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetReceiveConnectionFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetReceiveConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetReceiveConnectionFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetReceiveConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetReceiveConnectionFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxReceiveConnectionFlowControlWindow mocks base method
|
// GetMaxReceiveConnectionFlowControlWindow mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetMaxReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
func (m *MockParamsNegotiator) GetMaxReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
||||||
ret := _m.ctrl.Call(_m, "GetMaxReceiveConnectionFlowControlWindow")
|
ret := m.ctrl.Call(m, "GetMaxReceiveConnectionFlowControlWindow")
|
||||||
ret0, _ := ret[0].(protocol.ByteCount)
|
ret0, _ := ret[0].(protocol.ByteCount)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxReceiveConnectionFlowControlWindow indicates an expected call of GetMaxReceiveConnectionFlowControlWindow
|
// GetMaxReceiveConnectionFlowControlWindow indicates an expected call of GetMaxReceiveConnectionFlowControlWindow
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetMaxReceiveConnectionFlowControlWindow() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetMaxReceiveConnectionFlowControlWindow() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetMaxReceiveConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxReceiveConnectionFlowControlWindow))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMaxReceiveConnectionFlowControlWindow", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxReceiveConnectionFlowControlWindow))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxOutgoingStreams mocks base method
|
// GetMaxOutgoingStreams mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetMaxOutgoingStreams() uint32 {
|
func (m *MockParamsNegotiator) GetMaxOutgoingStreams() uint32 {
|
||||||
ret := _m.ctrl.Call(_m, "GetMaxOutgoingStreams")
|
ret := m.ctrl.Call(m, "GetMaxOutgoingStreams")
|
||||||
ret0, _ := ret[0].(uint32)
|
ret0, _ := ret[0].(uint32)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxOutgoingStreams indicates an expected call of GetMaxOutgoingStreams
|
// GetMaxOutgoingStreams indicates an expected call of GetMaxOutgoingStreams
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetMaxOutgoingStreams() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetMaxOutgoingStreams() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetMaxOutgoingStreams", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxOutgoingStreams))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMaxOutgoingStreams", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxOutgoingStreams))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxIncomingStreams mocks base method
|
// GetMaxIncomingStreams mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetMaxIncomingStreams() uint32 {
|
func (m *MockParamsNegotiator) GetMaxIncomingStreams() uint32 {
|
||||||
ret := _m.ctrl.Call(_m, "GetMaxIncomingStreams")
|
ret := m.ctrl.Call(m, "GetMaxIncomingStreams")
|
||||||
ret0, _ := ret[0].(uint32)
|
ret0, _ := ret[0].(uint32)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMaxIncomingStreams indicates an expected call of GetMaxIncomingStreams
|
// GetMaxIncomingStreams indicates an expected call of GetMaxIncomingStreams
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetMaxIncomingStreams() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetMaxIncomingStreams() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetMaxIncomingStreams", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxIncomingStreams))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMaxIncomingStreams", reflect.TypeOf((*MockParamsNegotiator)(nil).GetMaxIncomingStreams))
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetIdleConnectionStateLifetime mocks base method
|
// GetRemoteIdleTimeout mocks base method
|
||||||
func (_m *MockParamsNegotiator) GetIdleConnectionStateLifetime() time.Duration {
|
func (m *MockParamsNegotiator) GetRemoteIdleTimeout() time.Duration {
|
||||||
ret := _m.ctrl.Call(_m, "GetIdleConnectionStateLifetime")
|
ret := m.ctrl.Call(m, "GetRemoteIdleTimeout")
|
||||||
ret0, _ := ret[0].(time.Duration)
|
ret0, _ := ret[0].(time.Duration)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetIdleConnectionStateLifetime indicates an expected call of GetIdleConnectionStateLifetime
|
// GetRemoteIdleTimeout indicates an expected call of GetRemoteIdleTimeout
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) GetIdleConnectionStateLifetime() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) GetRemoteIdleTimeout() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "GetIdleConnectionStateLifetime", reflect.TypeOf((*MockParamsNegotiator)(nil).GetIdleConnectionStateLifetime))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRemoteIdleTimeout", reflect.TypeOf((*MockParamsNegotiator)(nil).GetRemoteIdleTimeout))
|
||||||
}
|
}
|
||||||
|
|
||||||
// OmitConnectionID mocks base method
|
// OmitConnectionID mocks base method
|
||||||
func (_m *MockParamsNegotiator) OmitConnectionID() bool {
|
func (m *MockParamsNegotiator) OmitConnectionID() bool {
|
||||||
ret := _m.ctrl.Call(_m, "OmitConnectionID")
|
ret := m.ctrl.Call(m, "OmitConnectionID")
|
||||||
ret0, _ := ret[0].(bool)
|
ret0, _ := ret[0].(bool)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// OmitConnectionID indicates an expected call of OmitConnectionID
|
// OmitConnectionID indicates an expected call of OmitConnectionID
|
||||||
func (_mr *MockParamsNegotiatorMockRecorder) OmitConnectionID() *gomock.Call {
|
func (mr *MockParamsNegotiatorMockRecorder) OmitConnectionID() *gomock.Call {
|
||||||
return _mr.mock.ctrl.RecordCallWithMethodType(_mr.mock, "OmitConnectionID", reflect.TypeOf((*MockParamsNegotiator)(nil).OmitConnectionID))
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "OmitConnectionID", reflect.TypeOf((*MockParamsNegotiator)(nil).OmitConnectionID))
|
||||||
}
|
}
|
||||||
|
|
|
@ -329,7 +329,7 @@ runLoop:
|
||||||
s.sentPacketHandler.OnAlarm()
|
s.sentPacketHandler.OnAlarm()
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.config.KeepAlive && s.handshakeComplete && time.Since(s.lastNetworkActivityTime) >= s.connParams.GetIdleConnectionStateLifetime()/2 {
|
if s.config.KeepAlive && s.handshakeComplete && time.Since(s.lastNetworkActivityTime) >= s.connParams.GetRemoteIdleTimeout()/2 {
|
||||||
// send the PING frame since there is no activity in the session
|
// send the PING frame since there is no activity in the session
|
||||||
s.packer.QueueControlFrame(&wire.PingFrame{})
|
s.packer.QueueControlFrame(&wire.PingFrame{})
|
||||||
s.keepAlivePingSent = true
|
s.keepAlivePingSent = true
|
||||||
|
@ -368,7 +368,7 @@ func (s *session) Context() context.Context {
|
||||||
func (s *session) maybeResetTimer() {
|
func (s *session) maybeResetTimer() {
|
||||||
var deadline time.Time
|
var deadline time.Time
|
||||||
if s.config.KeepAlive && s.handshakeComplete && !s.keepAlivePingSent {
|
if s.config.KeepAlive && s.handshakeComplete && !s.keepAlivePingSent {
|
||||||
deadline = s.lastNetworkActivityTime.Add(s.connParams.GetIdleConnectionStateLifetime() / 2)
|
deadline = s.lastNetworkActivityTime.Add(s.connParams.GetRemoteIdleTimeout() / 2)
|
||||||
} else {
|
} else {
|
||||||
deadline = s.lastNetworkActivityTime.Add(s.config.IdleTimeout)
|
deadline = s.lastNetworkActivityTime.Add(s.config.IdleTimeout)
|
||||||
}
|
}
|
||||||
|
|
|
@ -165,12 +165,10 @@ func (m *mockParamsNegotiator) GetReceiveConnectionFlowControlWindow() protocol.
|
||||||
func (m *mockParamsNegotiator) GetMaxReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
func (m *mockParamsNegotiator) GetMaxReceiveConnectionFlowControlWindow() protocol.ByteCount {
|
||||||
return protocol.DefaultMaxReceiveConnectionFlowControlWindowServer
|
return protocol.DefaultMaxReceiveConnectionFlowControlWindowServer
|
||||||
}
|
}
|
||||||
func (m *mockParamsNegotiator) GetMaxOutgoingStreams() uint32 { return 100 }
|
func (m *mockParamsNegotiator) GetMaxOutgoingStreams() uint32 { return 100 }
|
||||||
func (m *mockParamsNegotiator) GetMaxIncomingStreams() uint32 { return 100 }
|
func (m *mockParamsNegotiator) GetMaxIncomingStreams() uint32 { return 100 }
|
||||||
func (m *mockParamsNegotiator) GetIdleConnectionStateLifetime() time.Duration {
|
func (m *mockParamsNegotiator) GetRemoteIdleTimeout() time.Duration { return time.Hour }
|
||||||
return time.Hour
|
func (m *mockParamsNegotiator) OmitConnectionID() bool { return false }
|
||||||
}
|
|
||||||
func (m *mockParamsNegotiator) OmitConnectionID() bool { return false }
|
|
||||||
|
|
||||||
var _ = Describe("Session", func() {
|
var _ = Describe("Session", func() {
|
||||||
var (
|
var (
|
||||||
|
@ -1508,7 +1506,7 @@ var _ = Describe("Session", func() {
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
mockPn = mocks.NewMockParamsNegotiator(mockCtrl)
|
mockPn = mocks.NewMockParamsNegotiator(mockCtrl)
|
||||||
mockPn.EXPECT().GetIdleConnectionStateLifetime().Return(remoteIdleTimeout).AnyTimes()
|
mockPn.EXPECT().GetRemoteIdleTimeout().Return(remoteIdleTimeout).AnyTimes()
|
||||||
sess.connParams = mockPn
|
sess.connParams = mockPn
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue