10 lines
211 B
Go
10 lines
211 B
Go
// +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")
|
|
}
|