mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
15 lines
296 B
Go
15 lines
296 B
Go
//go:build !linux && !darwin
|
|
// +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
|
|
}
|