Files
smux/header.go
T
2016-08-26 15:51:33 +08:00

16 lines
183 B
Go

package smux
const ( // frame types
frameData uint8 = iota
frameWindowUpdate
framePing
frameGoAway
)
const ( // options
flagSYN uint16 = 1 << iota
flagACK
flagFIN
flagRST
)