add Frame data (Opcode, etc)

This commit is contained in:
xdrm-brackets 2018-04-26 23:02:22 +02:00
parent bf58fc49e5
commit d16a0830d0
2 changed files with 47 additions and 0 deletions

34
ws/frame/opcode/types.go Normal file
View File

@ -0,0 +1,34 @@
package opcode
import (
"git.xdrm.io/gws/internal/ws/frame"
)
// Represents OpCode Values
const (
// frame continuation
CONTINUATION frame.OpCode = 0x00
// frame type
TEXT frame.OpCode = 0x01
BINARY frame.OpCode = 0x02
// reserved for non-control frames
RSV1 frame.OpCode = 0x03
RSV2 frame.OpCode = 0x04
RSV3 frame.OpCode = 0x05
RSV4 frame.OpCode = 0x06
// connection close
CLOSE frame.OpCode = 0x08
// ping pong
PING frame.OpCode = 0x09
PONG frame.OpCode = 0x0A
// reserved for control frames
CRSV1 frame.OpCode = 0x0B
CRSV2 frame.OpCode = 0x0C
CRSV3 frame.OpCode = 0x0D
CRSV4 frame.OpCode = 0x0E
)

13
ws/frame/types.go Normal file
View File

@ -0,0 +1,13 @@
package frame
// Represents an OpCode
type OpCode byte
// Represents a frame metadata
type Header struct {
fin bool
opc OpCode
msk []byte // len: 4 if set, else empty
}