1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-03-02 19:45:22 -05:00

Move proxy/common/config to proxy/internal/config

This commit is contained in:
v2ray
2016-01-02 17:40:51 +01:00
parent dc86eb76da
commit 1c4c9bffad
29 changed files with 225 additions and 221 deletions

10
proxy/errors.go Normal file
View File

@@ -0,0 +1,10 @@
package proxy
import (
"errors"
)
var (
InvalidAuthentication = errors.New("Invalid authentication.")
InvalidProtocolVersion = errors.New("Invalid protocol version.")
)