Files
amnezia-tun2socks/core/device/fdbased/fd_windows.go
albexk 9fabebb17e Modifications for libxray (#2)
* Rename module and move to awg
2024-06-18 14:37:09 +01:00

12 lines
202 B
Go

package fdbased
import (
"errors"
"github.com/amnezia-vpn/amnezia-tun2socks/v2/core/device"
)
func Open(name string, mtu uint32) (device.Device, error) {
return nil, errors.New("not supported")
}