0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-18 14:19:48 +03:00

Add tun support

This commit is contained in:
世界
2023-04-06 19:00:46 +08:00
parent 18e5b0963f
commit 603264017a
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)
}