blob: a1cf708c26acabab98abcfc86a14045b0c0b12f4 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package pktline
// Frame is one decoded pkt-line frame.
//
// For PacketData, Payload holds frame bytes (possibly empty for 0004).
// For control frames, Payload is nil.
type Frame struct {
Type PacketType
Payload []byte
}
|