Files
tun2socks/component/dialer/bind_others.go
xjasonlyu 90d7d2dfe6 Refactor
2021-02-05 20:02:29 +08:00

13 lines
193 B
Go
Executable File

// +build !linux,!darwin
package dialer
import (
"errors"
"syscall"
)
func bindToInterface(network, address string, c syscall.RawConn) error {
return errors.New("unsupported platform")
}