mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 21:49:54 +00:00
10 lines
238 B
Go
10 lines
238 B
Go
package ackhandler
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/wire"
|
|
|
|
type Frame struct {
|
|
wire.Frame // nil if the frame has already been acknowledged in another packet
|
|
OnLost func(wire.Frame)
|
|
OnAcked func(wire.Frame)
|
|
}
|