fix dante discovery bugs: filter .in-addr names, dedupe multicast flows, fix unicast channel numbers

This commit is contained in:
Ian Gulliver
2026-01-23 16:28:41 -08:00
parent 66f98075e4
commit c694efade5
2 changed files with 7 additions and 2 deletions

View File

@@ -28,6 +28,9 @@ func extractDanteName(s string) string {
if at := strings.LastIndex(name, "@"); at >= 0 {
name = name[at+1:]
}
if strings.Contains(name, ".in-addr") {
return ""
}
return name
}