[][src]Function esp_idf_bindgen::esp_wifi_set_vendor_ie

pub unsafe extern "C" fn esp_wifi_set_vendor_ie(
    enable: bool,
    type_: wifi_vendor_ie_type_t,
    idx: wifi_vendor_ie_id_t,
    vnd_ie: *const c_void
) -> esp_err_t

@brief Set 802.11 Vendor-Specific Information Element

@param enable If true, specified IE is enabled. If false, specified IE is removed. @param type Information Element type. Determines the frame type to associate with the IE. @param idx Index to set or clear. Each IE type can be associated with up to two elements (indices 0 & 1). @param vnd_ie Pointer to vendor specific element data. First 6 bytes should be a header with fields matching vendor_ie_data_t. If enable is false, this argument is ignored and can be NULL. Data does not need to remain valid after the function returns.

@return