mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 19:33:59 +00:00
13 lines
267 B
Go
13 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
|
|
}
|