0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-13 11:59:35 +03:00

Add loopback outound

This commit is contained in:
世界
2021-09-19 20:28:38 +08:00
parent 5c366db847
commit 707efd6d12
9 changed files with 310 additions and 1 deletions

View File

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