mirror of
https://github.com/BishopFox/sliver
synced 2026-06-08 10:29:05 +00:00
9 lines
176 B
Go
9 lines
176 B
Go
package websocket
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrMessageTooBig is returned when a message exceeds the read limit.
|
|
var ErrMessageTooBig = errors.New("websocket: message too big")
|