Files
tun2socks/core/device/fd/fd_windows.go
T

12 lines
187 B
Go

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