initial commit

This commit is contained in:
ston1th 2020-11-12 02:09:20 +01:00
commit c0616030c6
14 changed files with 1468 additions and 0 deletions

10
pkg/vip/arp.go Normal file
View file

@ -0,0 +1,10 @@
// +build !linux
package vip
import "fmt"
// ARPSendGratuitous is only supported on Linux, so return an error
func ARPSendGratuitous(address, ifaceName string) error {
return fmt.Errorf("Unsupported on this OS")
}