mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-02-18 07:14:44 +00:00
10 lines
201 B
Go
10 lines
201 B
Go
|
//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
|
||
|
}
|