mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
14 lines
267 B
Go
14 lines
267 B
Go
// +build !linux,!darwin
|
|
|
|
package dialer
|
|
|
|
import "net"
|
|
|
|
func bindIfaceToDialer(dialer *net.Dialer, ifaceName string) error {
|
|
return errPlatformNotSupport
|
|
}
|
|
|
|
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
|
|
return errPlatformNotSupport
|
|
}
|