mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
11 lines
231 B
Go
11 lines
231 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A Frame in QUIC
|
|
type Frame interface {
|
|
Append(b []byte, version protocol.Version) ([]byte, error)
|
|
Length(version protocol.Version) protocol.ByteCount
|
|
}
|