2 releases

0.1.1 May 31, 2023
0.1.0 Mar 14, 2021

#13 in #wireless

Download history 1/week @ 2024-01-26 2/week @ 2024-02-09 24/week @ 2024-02-16 39/week @ 2024-02-23 23/week @ 2024-03-01 26/week @ 2024-03-08 14/week @ 2024-03-15 15/week @ 2024-03-22 39/week @ 2024-03-29

95 downloads per month
Used in 2 crates

MIT license

10KB
116 lines

iwlib

CI

Provides safe bindings on top of libiw library.

Usage

Currently it exposes minimal interfaces, any additional contributions welcome.

You can get the essid and it's quality using this:

use iwlib::*;

fn main() {
    let wireless_info = get_wireless_info("wlp0s20f3".to_string());
    println!("Wireless info: {:?}", wireless_info);
}

Executing the above code on my network gives me this:

$ cargo run
    Finished dev [unoptimized + debuginfo] target(s) in 0.01s
     Running `target/debug/iwlib-helper`
Wireless info: Some(WirelessInfo { wi_essid: "ichigokurasaki_5hz", wi_quality: 50 })

Dependencies

~0–1.8MB
~37K SLoC