keepsimple1 / mdns-sd

Rust library for mDNS based Service Discovery
Apache License 2.0
88 stars 38 forks source link

refactoring: remove Send for DnsRecordBox #226

Closed keepsimple1 closed 3 weeks ago

keepsimple1 commented 3 weeks ago

We never actually send DnsRecordExt objects across threads. Send was only used once when spawning the thread and it can be removed.

This patch was motivated when researching for issue #193 .