wifi 0.1.0

Library for getting wifi information
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 2 items with examples
  • Size
  • Source code size: 5.34 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 316.39 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • tjwhitaker/wifi
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • camp4climber

wifi

Travis Build Status crates.io MIT licensed

A rust library that will eventually allow for interacting with and getting information about local wifi networks.

Not for production use yet! The code quality is terrible right now as I'm still learning rust, so I appreciate pull requests and or guidance if you have them!

The module uses the following command line tools and assumes they are installed on your system.

  • airport on Mac OS-X

current features

get info about current network in osx

extern crate wifi;

use wifi::scanner;

fn main() {
  let network_info = scanner::get_info();
  println!("{:?}", network_info);
}

todo

  • error handling
  • write tests
  • detect operating system
  • scan networks
  • linux support
  • windows support