mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
12 lines
265 B
Go
12 lines
265 B
Go
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrorInvalidAuthentication = errors.New("Invalid authentication.")
|
|
ErrorInvalidProtocolVersion = errors.New("Invalid protocol version.")
|
|
ErrorAlreadyListening = errors.New("Already listening on another port.")
|
|
)
|