最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to get the address from the AddressData in rust dbus module - Stack Overflow

programmeradmin3浏览0评论

I am trying to use the dbus crate to get the address, netmask, DNS and gateway.

if let Some(ip4_config_path) = props.get("Ip4Config").and_then(|v| v.0.as_str()) {
if ip4_config_path != "/" {
    let ip4_proxy = connection.with_proxy(".freedesktop.NetworkManager",ip4_config_path,Duration::from_millis(5000),);
    
    let (config,): (PropMap,) = ip4_proxy.method_call(".freedesktop.DBus.Properties","GetAll",(".freedesktop.NetworkManager.IP4Config",),)
                                .map_err(|e| format!("Failed to get IP config: {}", e))?;
    
    eprintln!("Config {:?}", config);
    
    let address_data = config.get("AddressData");
    eprintln!("address_data {:?}", address_data);

Here when I print the address_data it shows as

"AddressData": Variant(InternalArray { data: [{"prefix": Variant(24), "address": Variant("192.168.100.20")}], inner_sig: Signature("a{sv}\0") })

So, now I am stuck at how to read the IP-address from this?

发布评论

评论列表(0)

  1. 暂无评论