gost_software/tun_win.go
2019-12-27 09:47:06 +08:00

14 lines
202 B
Go

// +build windows
package gost
import (
"errors"
"net"
)
func createTun(cfg TunConfig) (conn net.Conn, ipNet *net.IPNet, err error) {
err = errors.New("tun is not supported on Windows")
return
}