Files
tun2socks/component/dialer/bind_others.go
2021-08-21 10:48:37 +08:00

16 lines
242 B
Go
Executable File

//go: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")
}
}