1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-07 01:35:39 -05:00

prototype for reverse proxy

This commit is contained in:
Darien Raymond
2018-10-28 00:03:11 +02:00
parent 2d000dcdaa
commit 2020bbe606
10 changed files with 820 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package reverse
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}