sing-box/common/tun/tun_other.go

12 lines
119 B
Go
Raw Normal View History

2022-07-09 19:18:37 +08:00
//go:build !linux
package tun
import (
"os"
)
func Open(name string) (uintptr, error) {
return 0, os.ErrInvalid
}