Files
sing-box-extended/transport/openvpn/device_stack_stub.go

14 lines
290 B
Go

//go:build !with_gvisor
package openvpn
import "github.com/sagernet/sing-tun"
func newStackDevice(options DeviceOptions) (Device, error) {
return nil, tun.ErrGVisorNotIncluded
}
func newSystemStackDevice(options DeviceOptions) (Device, error) {
return nil, tun.ErrGVisorNotIncluded
}