Fix: undefined variable
This commit is contained in:
parent
2db4ce57ef
commit
76c9820065
1 changed files with 2 additions and 2 deletions
|
@ -5,9 +5,9 @@ package dialer
|
||||||
import "net"
|
import "net"
|
||||||
|
|
||||||
func bindIfaceToDialer(dialer *net.Dialer, ifaceName string) error {
|
func bindIfaceToDialer(dialer *net.Dialer, ifaceName string) error {
|
||||||
return errNotSupport
|
return errPlatformNotSupport
|
||||||
}
|
}
|
||||||
|
|
||||||
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
|
func bindIfaceToListenConfig(lc *net.ListenConfig, ifaceName string) error {
|
||||||
return errNotSupport
|
return errPlatformNotSupport
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue