mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
19 lines
457 B
Go
19 lines
457 B
Go
package ackhandler
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/wire"
|
|
|
|
// IsFrameAckEliciting returns true if the frame is ack-eliciting.
|
|
func IsFrameAckEliciting(f wire.Frame) bool {
|
|
_, ok := f.(*wire.AckFrame)
|
|
return !ok
|
|
}
|
|
|
|
// 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
|
|
}
|