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.
```rust
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()?; // Service kept alive until serviceref dropped Ok(()) } ```
```rust
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(v) = services.recv().await {
println!("Service = {:?}", v);
}
Ok(())
} ```
```rust
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(())
} ```
async-zeroconf
can be licensed under the MIT license or the Apache 2.0 license.