mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
14 lines
223 B
Go
14 lines
223 B
Go
//go:build !with_gvisor
|
|
|
|
package wireguard
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"github.com/sagernet/sing-tun"
|
|
)
|
|
|
|
func NewStackDevice(localAddresses []netip.Prefix, mtu uint32) (Device, error) {
|
|
return nil, tun.ErrGVisorNotIncluded
|
|
}
|