Clash.Meta/component/dialer/bind_others.go

15 lines
296 B
Go
Raw Normal View History

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