corewlan 0.2.0

Safe Rust bindings for Apple's CoreWLAN framework — inspect Wi-Fi interfaces, mutable configurations, event delegates, and preferred network state on macOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::Object;

extern "C" {
    pub fn cwrs_mutable_network_profile_new() -> Object;
    pub fn cwrs_mutable_network_profile_with_network_profile(profile: Object) -> Object;
    pub fn cwrs_mutable_network_profile_set_ssid_data(
        profile: Object,
        bytes: *const u8,
        length: usize,
    );
    pub fn cwrs_mutable_network_profile_set_security(profile: Object, security: isize);
}