filter multicast macs

This commit is contained in:
Ian Gulliver
2025-11-29 21:08:32 -08:00
parent c215800b17
commit e29e88b598
6 changed files with 214 additions and 13 deletions

View File

@@ -20,6 +20,11 @@ func New() *Tendrils {
}
func (t *Tendrils) Run() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go t.pollARP(ctx)
ticker := time.NewTicker(1 * time.Second)
defer ticker.Stop()