libwifi 0.5.0

A library for parsing IEEE 802.11 frames and handling wifi interfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod frame_control;
mod header;
mod mac_address;
mod sequence_control;
mod station_info;

pub use frame_control::FrameControl;
pub use header::*;
pub use mac_address::*;
pub use sequence_control::SequenceControl;
pub use station_info::{
    AudioDevices, Cameras, Category, ChannelSwitchAnnouncment, ChannelSwitchMode, Computers,
    Displays, DockingDevices, ExtendedCapabilities, GamingDevices, HTCapabilities, HTInformation,
    InputDevices, MultimediaDevices, MultipleBSSID, NetworkInfrastructure, PrintersEtAl,
    RsnAkmSuite, RsnCipherSuite, RsnInformation, RxStbc, SecondaryChannelOffset, SmPowerSave,
    StationInfo, Storage, SupportedRate, Telephone, VHTCapabilities, VendorSpecificInfo,
    WpaAkmSuite, WpaCipherSuite, WpaInformation, WpsInformation, WpsSetupState,
};