async-zeroconf 0.1.0

Async library for wrapping Zeroconf implemenations for use with Tokio
Documentation

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()?;
    // 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(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(())
}

License

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