| 43 | ) |
| 44 | |
| 45 | type MDNS struct { |
| 46 | OnError func(err error) |
| 47 | |
| 48 | mu sync.RWMutex |
| 49 | addrs map[string]mdnsEntry |
| 50 | names map[string]mdnsEntry |
| 51 | } |
| 52 | |
| 53 | type mdnsEntry struct { |
| 54 | lastUpdate time.Time |
nothing calls this directly
no outgoing calls
no test coverage detected