mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +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.
20 lines
546 B
Go
20 lines
546 B
Go
package ackhandler
|
|
|
|
import "github.com/refraction-networking/uquic/internal/wire"
|
|
|
|
// IsFrameAckEliciting returns true if the frame is ack-eliciting.
|
|
func IsFrameAckEliciting(f wire.Frame) bool {
|
|
_, isAck := f.(*wire.AckFrame)
|
|
_, isConnectionClose := f.(*wire.ConnectionCloseFrame)
|
|
return !isAck && !isConnectionClose
|
|
}
|
|
|
|
// HasAckElicitingFrames returns true if at least one frame is ack-eliciting.
|
|
func HasAckElicitingFrames(fs []Frame) bool {
|
|
for _, f := range fs {
|
|
if IsFrameAckEliciting(f.Frame) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|