mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-04-22 02:42:49 -04:00
12 lines
259 B
Go
12 lines
259 B
Go
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrInvalidAuthentication = errors.New("Invalid authentication.")
|
|
ErrInvalidProtocolVersion = errors.New("Invalid protocol version.")
|
|
ErrAlreadyListening = errors.New("Already listening on another port.")
|
|
)
|