keep increasing the packet number after version negotiation and retry

This commit is contained in:
Marten Seemann 2018-12-22 22:15:35 +06:30
parent 1abf9e1b37
commit 178ac0dacb
8 changed files with 59 additions and 13 deletions

View file

@ -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