Add neighbor tracking system with LLDP integration

This commit is contained in:
Ian Gulliver
2025-11-29 20:36:45 -08:00
parent b85925f644
commit 5dbdc0a408
4 changed files with 200 additions and 1 deletions

View File

@@ -9,11 +9,13 @@ import (
type Tendrils struct {
activeInterfaces map[string]context.CancelFunc
neighbors *Neighbors
}
func New() *Tendrils {
return &Tendrils{
activeInterfaces: map[string]context.CancelFunc{},
neighbors: NewNeighbors(),
}
}