You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
3 years ago
|
package websocket
|
||
|
|
||
|
// MessageType represents the type of a WebSocket message.
|
||
|
// See https://tools.ietf.org/html/rfc6455#section-5.6
|
||
|
type MessageType int
|
||
|
|
||
|
// MessageType constants.
|
||
|
const (
|
||
|
// MessageText is for UTF-8 encoded text messages like JSON.
|
||
|
MessageText MessageType = iota + 1
|
||
|
// MessageBinary is for binary messages like protobufs.
|
||
|
MessageBinary
|
||
|
)
|