Type Alias esp_idf_hal::sys::esp_vendor_ie_cb_t
source · pub type esp_vendor_ie_cb_t = Option<unsafe extern "C" fn(_: *mut c_void, _: u32, _: *const u8, _: *const vendor_ie_data_t, _: i32)>;
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§
None
No value.
Some(unsafe extern "C" fn(_: *mut c_void, _: u32, _: *const u8, _: *const vendor_ie_data_t, _: i32))
Some value of type T
.