pub type esp_vendor_ie_cb_t = Option<unsafe extern "C" fn(ctx: *mut c_void, type_: wifi_vendor_ie_type_t, sa: *const u8, vnd_ie: *const vendor_ie_data_t, rssi: c_int)>;
Expand description

@brief Function signature for received Vendor-Specific Information Element callback. @param ctx Context argument, as passed to esp_wifi_set_vendor_ie_cb() when registering callback. @param type Information element type, based on frame type received. @param sa Source 802.11 address. @param vnd_ie Pointer to the vendor specific element data received. @param rssi Received signal strength indication.

Aliased Type§

enum esp_vendor_ie_cb_t {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: u32, _: *const u8, _: *const vendor_ie_data_t, _: i32)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: u32, _: *const u8, _: *const vendor_ie_data_t, _: i32))

Some value of type T.