forked from quic-go/quic-go
fix handling of corrupted coalesced 1-RTT packets (#4663)
This commit is contained in:
@@ -864,7 +864,9 @@ func (s *connection) handlePacketImpl(rp receivedPacket) bool {
|
|||||||
if counter > 0 {
|
if counter > 0 {
|
||||||
p.buffer.Split()
|
p.buffer.Split()
|
||||||
}
|
}
|
||||||
processed = s.handleShortHeaderPacket(p)
|
if wasProcessed := s.handleShortHeaderPacket(p); wasProcessed {
|
||||||
|
processed = true
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user