1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-14 16:08:15 -04:00
v2fly/proxy/errors.go

11 lines
214 B
Go
Raw Normal View History

package proxy
2015-10-13 07:55:06 -04:00
import (
2016-12-04 03:10:47 -05:00
"v2ray.com/core/common/errors"
2015-10-13 07:55:06 -04:00
)
var (
2016-06-27 02:53:35 -04:00
ErrInvalidProtocolVersion = errors.New("Invalid protocol version.")
ErrAlreadyListening = errors.New("Already listening on another port.")
2015-10-13 07:55:06 -04:00
)