mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-09 10:49:35 +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
|
|
}
|