2020-10-22 00:11:49 +08:00
|
|
|
// +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
|
2020-10-22 00:11:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
|
2020-10-23 17:49:34 +08:00
|
|
|
return errPlatformNotSupport
|
2020-10-22 00:11:49 +08:00
|
|
|
}
|