Add tun support

This commit is contained in:
世界 2023-04-06 19:00:46 +08:00
parent 18e5b0963f
commit 603264017a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 935 additions and 2 deletions

11
features/tun/tun.go Normal file
View file

@ -0,0 +1,11 @@
package tun
import "github.com/xtls/xray-core/features"
type Interface interface {
features.Feature
}
func InterfaceType() interface{} {
return (*Interface)(nil)
}