mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-01 21:40:27 +00:00
9 lines
108 B
Go
9 lines
108 B
Go
package multiplex
|
|
|
|
type Frame struct {
|
|
StreamID uint32
|
|
Seq uint32
|
|
Closing uint8
|
|
Payload []byte
|
|
}
|