Files
tun2socks/core/device/fd/fd_windows.go
2021-11-01 14:01:21 +08:00

12 lines
184 B
Go

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