11 lines
229 B
Go
11 lines
229 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package vip
|
|
|
|
import "fmt"
|
|
|
|
// ARPSendGratuitous is only supported on Linux, so return an error
|
|
func ARPSendGratuitous(cidr, iface string) error {
|
|
return fmt.Errorf("Unsupported on this OS")
|
|
}
|