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