9 lines
177 B
Go
9 lines
177 B
Go
package interfaces
|
|
|
|
import "errors"
|
|
|
|
// BindToInterface fails on Windows.
|
|
func BindToInterface(fd int, ifname string) error {
|
|
return errors.New("not implemented on Windows")
|
|
}
|