Cloak/internal/multiplex/frame.go

15 lines
173 B
Go
Raw Normal View History

2018-10-05 22:44:20 +00:00
package multiplex
2019-11-03 20:28:43 +00:00
const (
2020-10-21 15:42:24 +00:00
closingNothing = iota
closingStream
closingSession
2019-11-03 20:28:43 +00:00
)
2018-10-05 22:44:20 +00:00
type Frame struct {
2018-10-27 22:35:46 +00:00
StreamID uint32
Seq uint64
Closing uint8
2018-10-27 22:35:46 +00:00
Payload []byte
2018-10-05 22:44:20 +00:00
}