mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unneeded tracking of acknowledgments for PATH_CHALLENGEs (#4959)
This commit is contained in:
parent
9f704c72cf
commit
d726a795db
1 changed files with 1 additions and 11 deletions
|
@ -19,7 +19,6 @@ type path struct {
|
|||
pathChallenge [8]byte
|
||||
validated bool
|
||||
rcvdNonProbing bool
|
||||
acked bool
|
||||
}
|
||||
|
||||
type pathManager struct {
|
||||
|
@ -119,16 +118,7 @@ type pathManagerAckHandler pathManager
|
|||
var _ ackhandler.FrameHandler = &pathManagerAckHandler{}
|
||||
|
||||
// Acknowledging the frame doesn't validate the path, only receiving the PATH_RESPONSE does.
|
||||
// However, it means that we don't need to retransmit the PATH_CHALLENGE.
|
||||
func (pm *pathManagerAckHandler) OnAcked(f wire.Frame) {
|
||||
pc := f.(*wire.PathChallengeFrame)
|
||||
for _, path := range pm.paths {
|
||||
if path.pathChallenge == pc.Data {
|
||||
path.acked = true
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
func (pm *pathManagerAckHandler) OnAcked(f wire.Frame) {}
|
||||
|
||||
func (pm *pathManagerAckHandler) OnLost(f wire.Frame) {
|
||||
// TODO: retransmit the packet the first time it is lost
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue