remove mdns dante node discovery

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-23 23:05:04 -08:00
parent 92040c832b
commit 604123559b
2 changed files with 2 additions and 77 deletions

View File

@@ -75,17 +75,6 @@ func (t *Tendrils) handlePTPPacket(ifaceName string, srcIP net.IP, data []byte)
t.nodes.SetDanteClockMaster(srcIP)
}
func (n *Nodes) UpdateDante(name string, ip net.IP, arcPort int) {
if n.t.DebugDante {
log.Printf("[dante] mdns response: %s -> %s (arc port %d)", name, ip, arcPort)
}
n.Update(nil, nil, []net.IP{ip}, "", name, "dante")
if arcPort > 0 {
go n.t.probeDanteDeviceWithPort(ip, arcPort)
}
}
func (n *Nodes) UpdateDanteTxChannels(name string, ip net.IP, channels string) {
n.mu.Lock()
defer n.mu.Unlock()