mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
12 lines
281 B
Go
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.")
|
|
)
|