sing-box/transport/wireguard/device_stack_stub.go

10 lines
201 B
Go
Raw Normal View History

2022-09-05 16:15:09 +00:00
//go:build no_gvisor
package wireguard
import "github.com/sagernet/sing-tun"
func NewStackDevice(localAddresses []netip.Prefix, mtu uint32) (Device, error) {
return nil, tun.ErrGVisorNotIncluded
}