Cloak/internal/multiplex/frame.go

9 lines
108 B
Go
Raw Normal View History

2018-10-05 22:44:20 +00:00
package multiplex
type Frame struct {
2018-10-27 22:35:46 +00:00
StreamID uint32
Seq uint32
Closing uint8
2018-10-27 22:35:46 +00:00
Payload []byte
2018-10-05 22:44:20 +00:00
}