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

```rust

[tokio::main]

async fn main() -> Result<(), asynczeroconf::ZeroconfError> { // Create a service description let service = asynczeroconf::Service::new("Server", "http.tcp", 80); // Publish the service let serviceref = service.publish().await?; // Service kept alive until serviceref dropped Ok(()) } ```

Browsing for services

```rust

[tokio::main]

async fn main() -> Result<(), asynczeroconf::ZeroconfError> { let mut browser = asynczeroconf::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

```rust

[tokio::main]

async fn main() -> Result<(), asynczeroconf::ZeroconfError> { let mut browser = asynczeroconf::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

License

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