mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 13:42:51 +08:00
20 lines
245 B
Go
20 lines
245 B
Go
//go:build !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"libcore"
|
|
"nekoray_core/gen"
|
|
)
|
|
|
|
func TunStart(config *gen.SetTunReq) error {
|
|
return errors.New("not for this platform")
|
|
}
|
|
|
|
func TunStop() {
|
|
}
|
|
|
|
func TunSetV2ray(i *libcore.V2RayInstance) {
|
|
}
|