1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-03 15:55:20 -05:00

more protocol implementation

This commit is contained in:
v2ray
2016-02-27 00:05:53 +01:00
parent be09847bbd
commit cba26dabe8
7 changed files with 369 additions and 2 deletions

10
common/protocol/errors.go Normal file
View File

@@ -0,0 +1,10 @@
package protocol
import (
"errors"
)
var (
ErrorInvalidUser = errors.New("Invalid user.")
ErrorInvalidVersion = errors.New("Invalid version.")
)