mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-23 17:11:29 +00:00
14 lines
292 B
Go
14 lines
292 B
Go
//go:build !with_gvisor
|
|
|
|
package wireguard
|
|
|
|
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
|
|
}
|