mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-14 04:43:17 +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
|
|
}
|