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

14 lines
289 B
Go

//go:build !with_gvisor
package masque
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
}