mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
only run DPLPMTUD if the connection can send packets with the DF bit set (#3879)
This commit is contained in:
parent
0438eada95
commit
614fdb3271
15 changed files with 67 additions and 26 deletions
|
@ -89,3 +89,17 @@ func (mr *MockSendConnMockRecorder) Write(arg0 interface{}) *gomock.Call {
|
|||
mr.mock.ctrl.T.Helper()
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Write", reflect.TypeOf((*MockSendConn)(nil).Write), arg0)
|
||||
}
|
||||
|
||||
// capabilities mocks base method.
|
||||
func (m *MockSendConn) capabilities() connCapabilities {
|
||||
m.ctrl.T.Helper()
|
||||
ret := m.ctrl.Call(m, "capabilities")
|
||||
ret0, _ := ret[0].(connCapabilities)
|
||||
return ret0
|
||||
}
|
||||
|
||||
// capabilities indicates an expected call of capabilities.
|
||||
func (mr *MockSendConnMockRecorder) capabilities() *gomock.Call {
|
||||
mr.mock.ctrl.T.Helper()
|
||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "capabilities", reflect.TypeOf((*MockSendConn)(nil).capabilities))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue