add dante subscription discovery via arc protocol

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-23 11:30:40 -08:00
parent a157a2a5e4
commit 47b48337b3
6 changed files with 467 additions and 6 deletions

View File

@@ -14,6 +14,7 @@ type Tendrils struct {
activeInterfaces map[string]context.CancelFunc
nodes *Nodes
artnet *ArtNetNodes
danteFlows *DanteFlows
Interface string
DisableARP bool
@@ -42,6 +43,7 @@ func New() *Tendrils {
t := &Tendrils{
activeInterfaces: map[string]context.CancelFunc{},
artnet: NewArtNetNodes(),
danteFlows: NewDanteFlows(),
}
t.nodes = NewNodes(t)
return t