mirror of
https://github.com/xtaci/smux.git
synced 2024-04-21 10:51:48 +00:00
16 lines
183 B
Go
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
|
|
)
|