14 lines
202 B
Go
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
|
|
}
|