Files
tun2socks/component/dialer/bind_others.go
2021-02-10 15:46:55 +08:00

16 lines
238 B
Go
Executable File

// +build !linux,!darwin
package dialer
import (
"errors"
"net"
"syscall"
)
func bindToInterface(_ *net.Interface) controlFunc {
return func(string, string, syscall.RawConn) error {
return errors.New("unsupported platform")
}
}