arp.go 160 B

1234567891011
  1. package neighbors
  2. import (
  3. "context"
  4. )
  5. type (
  6. ARP interface {
  7. Present(ctx context.Context, ifs map[string]bool, addrs map[string]bool) (bool, error)
  8. }
  9. )