mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
11 lines
175 B
Go
11 lines
175 B
Go
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
InvalidAuthentication = errors.New("Invalid authentication.")
|
|
InvalidProtocolVersion = errors.New("Invalid protocol version.")
|
|
)
|