mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
keep increasing the packet number after version negotiation and retry
This commit is contained in:
parent
1abf9e1b37
commit
178ac0dacb
8 changed files with 59 additions and 13 deletions
|
@ -200,8 +200,10 @@ func (mr *MockQuicSessionMockRecorder) RemoteAddr() *gomock.Call {
|
|||
}
|
||||
|
||||
// closeForRecreating mocks base method
|
||||
func (m *MockQuicSession) closeForRecreating() {
|
||||
m.ctrl.Call(m, "closeForRecreating")
|
||||
func (m *MockQuicSession) closeForRecreating() protocol.PacketNumber {
|
||||
ret := m.ctrl.Call(m, "closeForRecreating")
|
||||
ret0, _ := ret[0].(protocol.PacketNumber)
|
||||
return ret0
|
||||
}
|
||||
|
||||
// closeForRecreating indicates an expected call of closeForRecreating
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue