koi-mdns 0.2.202603241449

mDNS/DNS-SD service discovery and registration for the local network
Documentation
1
2
3
4
5
6
7
8
9
10
use koi_common::types::ServiceRecord;

/// Events emitted by the mDNS domain.
/// Subscribers react to service discovery lifecycle changes.
#[derive(Debug, Clone)]
pub enum MdnsEvent {
    Found(ServiceRecord),
    Resolved(ServiceRecord),
    Removed { name: String, service_type: String },
}