#dns-client #discovery #multicast #dns #chromecast #networking #ip-address

mdns

一个多播DNS客户端库。支持在局域网中发现任何mDNS设备

17个版本 (6个稳定版)

3.0.0 2021年1月29日
2.0.2 2021年1月29日
1.1.0 2020年1月30日
0.3.2 2020年1月26日
0.1.2 2016年11月27日

#1574 in 网络编程

Download history • Rust 包仓库 1417/week @ 2024-03-15 • Rust 包仓库 1260/week @ 2024-03-22 • Rust 包仓库 1059/week @ 2024-03-29 • Rust 包仓库 1277/week @ 2024-04-05 • Rust 包仓库 1333/week @ 2024-04-12 • Rust 包仓库 1244/week @ 2024-04-19 • Rust 包仓库 1585/week @ 2024-04-26 • Rust 包仓库 1259/week @ 2024-05-03 • Rust 包仓库 1379/week @ 2024-05-10 • Rust 包仓库 1624/week @ 2024-05-17 • Rust 包仓库 1493/week @ 2024-05-24 • Rust 包仓库 2035/week @ 2024-05-31 • Rust 包仓库 1467/week @ 2024-06-07 • Rust 包仓库 1568/week @ 2024-06-14 • Rust 包仓库 1403/week @ 2024-06-21 • Rust 包仓库 847/week @ 2024-06-28 • Rust 包仓库

5,665 每月下载量
用于39个包 (8个直接使用)

MIT许可证

22KB
419

mdns

Build Status crates.io MIT license

文档

Rust中的多播DNS客户端。

错误日志由log库处理。

维基百科

示例

查找本地网络中所有Chromecasts的IP地址。

use futures_util::{pin_mut, stream::StreamExt};
use mdns::{Error, Record, RecordKind};
use std::{net::IpAddr, time::Duration};


const SERVICE_NAME: &'static str = "_googlecast._tcp.local";

#[async_std::main]
async fn main() -> Result<(), Error> {
    // Iterate through responses from each Cast device, asking for new devices every 15s
    let stream = mdns::discover::all(SERVICE_NAME, Duration::from_secs(15))?.listen();
    pin_mut!(stream);

    while let Some(Ok(response)) = stream.next().await {
        let addr = response.records()
                           .filter_map(self::to_ip_addr)
                           .next();

        if let Some(addr) = addr {
            println!("found cast device at {}", addr);
        } else {
            println!("cast device does not advertise address");
        }
    }

    Ok(())
}

fn to_ip_addr(record: &Record) -> Option<IpAddr> {
    match record.kind {
        RecordKind::A(addr) => Some(addr.into()),
        RecordKind::AAAA(addr) => Some(addr.into()),
        _ => None,
    }
}

依赖项

~7–16MB
~233K SLoC