Files
2024-11-01 17:43:06 +00:00

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")
}