mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
add a function to pass the retry token to the packet packer
This commit is contained in:
parent
2712626e66
commit
7a7e7ca6eb
4 changed files with 20 additions and 8 deletions
|
@ -108,3 +108,13 @@ func (m *MockPacker) PackRetransmission(arg0 *ackhandler.Packet) ([]*packedPacke
|
|||
func (mr *MockPackerMockRecorder) PackRetransmission(arg0 interface{}) *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PackRetransmission", reflect.TypeOf((*MockPacker)(nil).PackRetransmission), arg0)
|
||||
}
|
||||
|
||||
// SetToken mocks base method
|
||||
func (m *MockPacker) SetToken(arg0 []byte) {
|
||||
m.ctrl.Call(m, "SetToken", arg0)
|
||||
}
|
||||
|
||||
// SetToken indicates an expected call of SetToken
|
||||
func (mr *MockPackerMockRecorder) SetToken(arg0 interface{}) *gomock.Call {
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetToken", reflect.TypeOf((*MockPacker)(nil).SetToken), arg0)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue