clash/component/dialer/bind_others.go

14 lines
267 B
Go
Raw Normal View History

// +build !linux,!darwin
package dialer
import "net"
func bindIfaceToDialer(dialer *net.Dialer, ifaceName string) error {
2020-10-23 09:49:34 +00:00
return errPlatformNotSupport
}
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
2020-10-23 09:49:34 +00:00
return errPlatformNotSupport
}