8 releases

0.3.4 Mar 28, 2024
0.3.2 Oct 10, 2022
0.3.1 Sep 15, 2022
0.3.0 Aug 6, 2021
0.1.0 Apr 27, 2020

#181 in Network programming

Download history 264/week @ 2024-07-21 364/week @ 2024-07-28 223/week @ 2024-08-04 183/week @ 2024-08-11 237/week @ 2024-08-18 337/week @ 2024-08-25 255/week @ 2024-09-01 217/week @ 2024-09-08 485/week @ 2024-09-15 662/week @ 2024-09-22 188/week @ 2024-09-29 196/week @ 2024-10-06 197/week @ 2024-10-13 214/week @ 2024-10-20 178/week @ 2024-10-27 231/week @ 2024-11-03

841 downloads per month
Used in rs-matter

MIT/Apache

205KB
6K SLoC

Astro DNS-SD

Build Status License Cargo Documentation

Minimal but friendly safe wrapper around dns-sd(Bonjour, mDNS, Zeroconf DNS) APIs.

Documentation

Features

Complete

  • Service registration
  • TXTRecord support for service registration via HashMap
  • Service browsing

Todo

  • Record creation
  • Name resolution
  • Port map
  • Tests
  • Documentation

Build Requirements

astro-dnssd requires the Bonjour SDK (as of 0.3 on windows, it's optional, see win-bonjour feature flag)

  • Windows: Download the SDK here
  • Linux: Install avahi-compat-libdns_sd for your distro of choice.

Technical Background

This website provides a good overview of the DNS-SD protocol.

Example

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));
}

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~0.3–1.1MB
~22K SLoC