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

dns outbound proxy

This commit is contained in:
Darien Raymond
2019-02-06 10:21:04 +01:00
parent 66a60dbfa3
commit 836440c61a
9 changed files with 720 additions and 2 deletions

View File

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