mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
don't return a stateless reset token when adding a new connection ID
Both server and client didn't make use of the token. It was only used by the connIDGenerator.
This commit is contained in:
parent
44c1092ed7
commit
634169b061
9 changed files with 51 additions and 44 deletions
|
@ -35,11 +35,9 @@ func (m *MockPacketHandlerManager) EXPECT() *MockPacketHandlerManagerMockRecorde
|
|||
}
|
||||
|
||||
// Add mocks base method
|
||||
func (m *MockPacketHandlerManager) Add(arg0 protocol.ConnectionID, arg1 packetHandler) [16]byte {
|
||||
func (m *MockPacketHandlerManager) Add(arg0 protocol.ConnectionID, arg1 packetHandler) {
|
||||
m.ctrl.T.Helper()
|
||||
ret := m.ctrl.Call(m, "Add", arg0, arg1)
|
||||
ret0, _ := ret[0].([16]byte)
|
||||
return ret0
|
||||
m.ctrl.Call(m, "Add", arg0, arg1)
|
||||
}
|
||||
|
||||
// Add indicates an expected call of Add
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue