| Crates.io | astro-dnssd |
| lib.rs | astro-dnssd |
| version | 0.3.6 |
| created_at | 2020-04-27 20:01:15.068794+00 |
| updated_at | 2025-06-16 19:49:12.791054+00 |
| description | Simple & safe DNS-SD wrapper |
| homepage | |
| repository | https://github.com/AstroHQ/astro-dnssd |
| max_upload_size | |
| id | 234762 |
| size | 154,227 |
Minimal but friendly safe wrapper around dns-sd(Bonjour, mDNS, Zeroconf DNS) APIs.
astro-dnssd requires the Bonjour SDK (as of 0.3 on windows, it's optional, see win-bonjour feature flag)
avahi-compat-libdns_sd for your distro of choice.This website provides a good overview of the DNS-SD protocol.
use astro_dnssd::DNSServiceBuilder;
use env_logger::Env;
use std::thread::sleep;
use std::time::Duration;
fn main() {
env_logger::from_env(Env::default().default_filter_or("trace")).init();
println!("Registering service...");
let service = DNSServiceBuilder::new("_http._tcp", 8080)
.with_key_value("status".into(), "open".into())
.register();
{
match service {
Ok(service) => {
println!("Registered... waiting 20s");
sleep(Duration::from_secs(20));
println!("Dropping... {:?}", service);
}
Err(e) => {
println!("Error registering: {:?}", e);
}
}
}
log::info!("Drop should have happened");
sleep(Duration::from_secs(5));
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.