Cloak/internal/multiplex/frame.go

11 lines
148 B
Go
Raw Normal View History

2018-10-05 22:44:20 +00:00
package multiplex
import ()
type Frame struct {
2018-10-07 17:09:45 +00:00
StreamID uint32
Seq uint32
ClosingStreamID uint32
Payload []byte
2018-10-05 22:44:20 +00:00
}