Fix: undefined variable

This commit is contained in:
Dreamacro 2020-10-23 17:49:34 +08:00
parent 2db4ce57ef
commit 76c9820065

View file

@ -5,9 +5,9 @@ package dialer
import "net"
func bindIfaceToDialer(dialer *net.Dialer, ifaceName string) error {
return errNotSupport
return errPlatformNotSupport
}
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
return errNotSupport
return errPlatformNotSupport
}