1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-01 09:14:15 -04:00
v2fly/proxy/errors.go
2016-12-04 09:10:47 +01:00

12 lines
281 B
Go

package proxy
import (
"v2ray.com/core/common/errors"
)
var (
ErrInvalidAuthentication = errors.New("Invalid authentication.")
ErrInvalidProtocolVersion = errors.New("Invalid protocol version.")
ErrAlreadyListening = errors.New("Already listening on another port.")
)