Hubert Banaszewski

Results 4 comments of Hubert Banaszewski

As far as I see it is not possible without making changes inside the crate. Mapping `name -> id` keeps only last registered service for every name: https://github.com/plietar/rust-mdns/blob/0974ab4ff7874437e11a89037c8258362a0061f8/src/services.rs#L13-L21 It could...

You're right that this is recommended way. I've read about it and found this: https://tools.ietf.org/html/rfc6763#appendix-D I was focused too much on queries that I make in my project - programmatically...

dns-sd probably is the well-implemented mDNS querier - it keeps track of all services in the local network. So for a while, it will have cached information about your published...

It removes it from memory of the responder. It will not be published anymore. Continuous queriers, the ones that keep the real-time list of services, have to cache it to...