mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57: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.
23 lines
937 B
Go
23 lines
937 B
Go
package ackhandler
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/internal/utils"
|
|
"github.com/refraction-networking/uquic/logging"
|
|
)
|
|
|
|
// NewAckHandler creates a new SentPacketHandler and a new ReceivedPacketHandler.
|
|
// clientAddressValidated indicates whether the address was validated beforehand by an address validation token.
|
|
// clientAddressValidated has no effect for a client.
|
|
func NewAckHandler(
|
|
initialPacketNumber protocol.PacketNumber,
|
|
initialMaxDatagramSize protocol.ByteCount,
|
|
rttStats *utils.RTTStats,
|
|
clientAddressValidated bool,
|
|
pers protocol.Perspective,
|
|
tracer logging.ConnectionTracer,
|
|
logger utils.Logger,
|
|
) (SentPacketHandler, ReceivedPacketHandler) {
|
|
sph := newSentPacketHandler(initialPacketNumber, initialMaxDatagramSize, rttStats, clientAddressValidated, pers, tracer, logger)
|
|
return sph, newReceivedPacketHandler(sph, rttStats, logger)
|
|
}
|