1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-06 22:05:27 -04:00

feat: add tun support for tcp

This commit is contained in:
AkinoKaede
2023-05-28 12:18:58 +08:00
committed by Shelikhoo
parent 442eb44f74
commit 12567c62ea
11 changed files with 515 additions and 0 deletions

View File

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