mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
ackhandler: remove unneeded SetHandshakeConfirmed from SentPacketHandler (#4890)
According to section 4.9.2 of RFC 9001, dropping the Handshake packet number spaces happens when the handshake is confirmed.
This commit is contained in:
parent
92dc1970ec
commit
2d2538d790
5 changed files with 3 additions and 52 deletions
|
@ -794,7 +794,6 @@ func (s *connection) handleHandshakeConfirmed(now time.Time) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
s.handshakeConfirmed = true
|
s.handshakeConfirmed = true
|
||||||
s.sentPacketHandler.SetHandshakeConfirmed(now)
|
|
||||||
s.cryptoStreamHandler.SetHandshakeConfirmed()
|
s.cryptoStreamHandler.SetHandshakeConfirmed()
|
||||||
|
|
||||||
if !s.config.DisablePathMTUDiscovery && s.conn.capabilities().DF {
|
if !s.config.DisablePathMTUDiscovery && s.conn.capabilities().DF {
|
||||||
|
|
|
@ -17,7 +17,6 @@ type SentPacketHandler interface {
|
||||||
ReceivedBytes(_ protocol.ByteCount, rcvTime time.Time)
|
ReceivedBytes(_ protocol.ByteCount, rcvTime time.Time)
|
||||||
DropPackets(_ protocol.EncryptionLevel, rcvTime time.Time)
|
DropPackets(_ protocol.EncryptionLevel, rcvTime time.Time)
|
||||||
ResetForRetry(rcvTime time.Time)
|
ResetForRetry(rcvTime time.Time)
|
||||||
SetHandshakeConfirmed(now time.Time)
|
|
||||||
|
|
||||||
// The SendMode determines if and what kind of packets can be sent.
|
// The SendMode determines if and what kind of packets can be sent.
|
||||||
SendMode(now time.Time) SendMode
|
SendMode(now time.Time) SendMode
|
||||||
|
|
|
@ -179,6 +179,9 @@ func (h *sentPacketHandler) DropPackets(encLevel protocol.EncryptionLevel, now t
|
||||||
case protocol.EncryptionInitial:
|
case protocol.EncryptionInitial:
|
||||||
h.initialPackets = nil
|
h.initialPackets = nil
|
||||||
case protocol.EncryptionHandshake:
|
case protocol.EncryptionHandshake:
|
||||||
|
// Dropping the handshake packet number space means that the handshake is confirmed,
|
||||||
|
// see section 4.9.2 of RFC 9001.
|
||||||
|
h.handshakeConfirmed = true
|
||||||
h.handshakePackets = nil
|
h.handshakePackets = nil
|
||||||
case protocol.Encryption0RTT:
|
case protocol.Encryption0RTT:
|
||||||
// This function is only called when 0-RTT is rejected,
|
// This function is only called when 0-RTT is rejected,
|
||||||
|
@ -912,16 +915,3 @@ func (h *sentPacketHandler) ResetForRetry(now time.Time) {
|
||||||
}
|
}
|
||||||
h.ptoCount = 0
|
h.ptoCount = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *sentPacketHandler) SetHandshakeConfirmed(now time.Time) {
|
|
||||||
if h.initialPackets != nil {
|
|
||||||
panic("didn't drop initial correctly")
|
|
||||||
}
|
|
||||||
if h.handshakePackets != nil {
|
|
||||||
panic("didn't drop handshake correctly")
|
|
||||||
}
|
|
||||||
h.handshakeConfirmed = true
|
|
||||||
// We don't send PTOs for application data packets before the handshake completes.
|
|
||||||
// Make sure the timer is armed now, if necessary.
|
|
||||||
h.setLossDetectionTimer(now)
|
|
||||||
}
|
|
||||||
|
|
|
@ -133,7 +133,6 @@ var _ = Describe("SentPacketHandler", func() {
|
||||||
setHandshakeConfirmed := func() {
|
setHandshakeConfirmed := func() {
|
||||||
handler.DropPackets(protocol.EncryptionInitial, time.Now())
|
handler.DropPackets(protocol.EncryptionInitial, time.Now())
|
||||||
handler.DropPackets(protocol.EncryptionHandshake, time.Now())
|
handler.DropPackets(protocol.EncryptionHandshake, time.Now())
|
||||||
handler.SetHandshakeConfirmed(time.Now())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Context("registering sent packets", func() {
|
Context("registering sent packets", func() {
|
||||||
|
|
|
@ -493,42 +493,6 @@ func (c *MockSentPacketHandlerSentPacketCall) DoAndReturn(f func(time.Time, prot
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetHandshakeConfirmed mocks base method.
|
|
||||||
func (m *MockSentPacketHandler) SetHandshakeConfirmed(now time.Time) {
|
|
||||||
m.ctrl.T.Helper()
|
|
||||||
m.ctrl.Call(m, "SetHandshakeConfirmed", now)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetHandshakeConfirmed indicates an expected call of SetHandshakeConfirmed.
|
|
||||||
func (mr *MockSentPacketHandlerMockRecorder) SetHandshakeConfirmed(now any) *MockSentPacketHandlerSetHandshakeConfirmedCall {
|
|
||||||
mr.mock.ctrl.T.Helper()
|
|
||||||
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetHandshakeConfirmed", reflect.TypeOf((*MockSentPacketHandler)(nil).SetHandshakeConfirmed), now)
|
|
||||||
return &MockSentPacketHandlerSetHandshakeConfirmedCall{Call: call}
|
|
||||||
}
|
|
||||||
|
|
||||||
// MockSentPacketHandlerSetHandshakeConfirmedCall wrap *gomock.Call
|
|
||||||
type MockSentPacketHandlerSetHandshakeConfirmedCall struct {
|
|
||||||
*gomock.Call
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return rewrite *gomock.Call.Return
|
|
||||||
func (c *MockSentPacketHandlerSetHandshakeConfirmedCall) Return() *MockSentPacketHandlerSetHandshakeConfirmedCall {
|
|
||||||
c.Call = c.Call.Return()
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// Do rewrite *gomock.Call.Do
|
|
||||||
func (c *MockSentPacketHandlerSetHandshakeConfirmedCall) Do(f func(time.Time)) *MockSentPacketHandlerSetHandshakeConfirmedCall {
|
|
||||||
c.Call = c.Call.Do(f)
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
|
||||||
func (c *MockSentPacketHandlerSetHandshakeConfirmedCall) DoAndReturn(f func(time.Time)) *MockSentPacketHandlerSetHandshakeConfirmedCall {
|
|
||||||
c.Call = c.Call.DoAndReturn(f)
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetMaxDatagramSize mocks base method.
|
// SetMaxDatagramSize mocks base method.
|
||||||
func (m *MockSentPacketHandler) SetMaxDatagramSize(count protocol.ByteCount) {
|
func (m *MockSentPacketHandler) SetMaxDatagramSize(count protocol.ByteCount) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue