Files
sing-box-extended/transport/masque/device_stack_stub.go
2026-05-29 01:31:57 +03:00

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
}