mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
23 lines
498 B
Go
23 lines
498 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 {
|
|
switch f.(type) {
|
|
case *wire.AckFrame:
|
|
return false
|
|
default:
|
|
return true
|
|
}
|
|
}
|
|
|
|
// HasAckElicitingFrames returns true if at least one frame is ack-eliciting.
|
|
func HasAckElicitingFrames(fs []wire.Frame) bool {
|
|
for _, f := range fs {
|
|
if IsFrameAckEliciting(f) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|