mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
30 lines
913 B
Go
30 lines
913 B
Go
package ackhandler
|
|
|
|
import "github.com/refraction-networking/uquic/internal/protocol"
|
|
|
|
type uSentPacketHandler struct {
|
|
*sentPacketHandler
|
|
|
|
initialPacketNumberLength protocol.PacketNumberLen // [UQUIC]
|
|
}
|
|
|
|
func (h *uSentPacketHandler) PeekPacketNumber(encLevel protocol.EncryptionLevel) (protocol.PacketNumber, protocol.PacketNumberLen) {
|
|
pnSpace := h.getPacketNumberSpace(encLevel)
|
|
pn := pnSpace.pns.Peek()
|
|
// See section 17.1 of RFC 9000.
|
|
|
|
// [UQUIC] Otherwise it kinda breaks PN length mimicry.
|
|
if encLevel == protocol.EncryptionInitial && h.initialPacketNumberLength != 0 {
|
|
return pn, h.initialPacketNumberLength
|
|
}
|
|
// [/UQUIC]
|
|
|
|
return pn, protocol.GetPacketNumberLengthForHeader(pn, pnSpace.largestAcked)
|
|
}
|
|
|
|
// [UQUIC]
|
|
func SetInitialPacketNumberLength(h SentPacketHandler, pnLen protocol.PacketNumberLen) {
|
|
if sph, ok := h.(*uSentPacketHandler); ok {
|
|
sph.initialPacketNumberLength = pnLen
|
|
}
|
|
}
|