mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-17 15:25:30 +00:00
15 lines
173 B
Go
15 lines
173 B
Go
package multiplex
|
|
|
|
const (
|
|
closingNothing = iota
|
|
closingStream
|
|
closingSession
|
|
)
|
|
|
|
type Frame struct {
|
|
StreamID uint32
|
|
Seq uint64
|
|
Closing uint8
|
|
Payload []byte
|
|
}
|