async-zeroconf

Crates.ioasync-zeroconf
lib.rsasync-zeroconf
version0.2.2
sourcesrc
created_at2021-08-27 13:44:50.557583
updated_at2021-09-15 20:42:31.289671
descriptionAsync library for wrapping Zeroconf implemenations for use with Tokio
homepagehttps://github.com/martiansoup/async-zeroconf-rs
repositoryhttps://github.com/martiansoup/async-zeroconf-rs
max_upload_size
id443091
size90,290
Alex Beharrell (martiansoup)

documentation

https://docs.rs/async-zeroconf

README

async-zeroconf

async-zeroconf is a crate to register ZeroConf services and provides a way of keeping the service alive using Tokio rather than a synchronous event loop.

Examples

Publishing a service

#[tokio::main]
async fn main() -> Result<(), async_zeroconf::ZeroconfError> {
    // Create a service description
    let service = async_zeroconf::Service::new("Server", "_http._tcp", 80);
    // Publish the service
    let service_ref = service.publish().await?;
    // Service kept alive until service_ref dropped
    Ok(())
}

Browsing for services

#[tokio::main]
async fn main() -> Result<(), async_zeroconf::ZeroconfError> {
    let mut browser = async_zeroconf::ServiceBrowserBuilder::new("_http._tcp");
    let mut services = browser
        .timeout(tokio::time::Duration::from_secs(2))
        .browse()?;

    while let Some(Ok(v)) = services.recv().await {
        println!("Service = {}", v);
    }
    Ok(())
}

Resolving a service

#[tokio::main]
async fn main() -> Result<(), async_zeroconf::ZeroconfError> {
    let mut browser = async_zeroconf::ServiceBrowserBuilder::new("_http._tcp");
    let mut services = browser
        .timeout(tokio::time::Duration::from_secs(2))
        .browse()?;

    while let Some(Ok(v)) = services.recv().await {
        let resolved_service = async_zeroconf::ServiceResolver::r(&v).await?;
        println!("Service = {}", resolved_service);
    }
    Ok(())
}

Changelog

  • 0.2.2
    • Add accessors for host/txt on Service
  • 0.2.1
    • Fix minor issue with C types
  • 0.2.0
    • Fix issues with errors on publishing a service
    • publish is now an async function as it waits for errors
  • 0.1.0
    • Initial version

License

async-zeroconf can be licensed under the MIT license or the Apache 2.0 license.

Commit count: 7

cargo fmt