mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-09 20:26:08 +02:00
12 lines
227 B
Go
12 lines
227 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/enetx/uquic/internal/protocol"
|
|
)
|
|
|
|
// A Frame in QUIC
|
|
type Frame interface {
|
|
Append(b []byte, version protocol.Version) ([]byte, error)
|
|
Length(version protocol.Version) protocol.ByteCount
|
|
}
|