initial commit
This commit is contained in:
commit
7715fcf373
37 changed files with 2957 additions and 0 deletions
10
pkg/vip/arp.go
Normal file
10
pkg/vip/arp.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
// +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")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue