Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant - Event notifications |
| 3 | * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi> |
| 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef NOTIFY_H |
| 10 | #define NOTIFY_H |
| 11 | |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 12 | #include "p2p/p2p.h" |
Roshan Pius | 04a9d74 | 2016-12-12 12:40:46 -0800 | [diff] [blame] | 13 | #include "bss.h" |
Jimmy Chen | 126b170 | 2019-08-28 17:59:33 +0800 | [diff] [blame] | 14 | #include "rsn_supp/pmksa_cache.h" |
Hai Shalom | 0676811 | 2019-12-04 15:49:43 -0800 | [diff] [blame] | 15 | #include "dpp.h" |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 16 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 17 | struct wps_credential; |
| 18 | struct wps_event_m2d; |
| 19 | struct wps_event_fail; |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 20 | struct tls_cert_data; |
Hai Shalom | c1a2144 | 2022-02-04 13:43:00 -0800 | [diff] [blame] | 21 | struct wpa_cred; |
Sunil Ravi | 77d572f | 2023-01-17 23:58:31 +0000 | [diff] [blame] | 22 | struct rsn_pmksa_cache_entry; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 23 | |
| 24 | int wpas_notify_supplicant_initialized(struct wpa_global *global); |
| 25 | void wpas_notify_supplicant_deinitialized(struct wpa_global *global); |
| 26 | int wpas_notify_iface_added(struct wpa_supplicant *wpa_s); |
| 27 | void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s); |
| 28 | void wpas_notify_state_changed(struct wpa_supplicant *wpa_s, |
| 29 | enum wpa_states new_state, |
| 30 | enum wpa_states old_state); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 31 | void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 32 | void wpas_notify_auth_status_code(struct wpa_supplicant *wpa_s); |
Sunil Ravi | e06118e | 2021-01-03 08:39:46 -0800 | [diff] [blame] | 33 | void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s, const u8 *bssid, u8 timed_out, |
| 34 | const u8 *assoc_resp_ie, size_t assoc_resp_ie_len); |
Roshan Pius | 38e9676 | 2017-01-23 14:52:00 -0800 | [diff] [blame] | 35 | void wpas_notify_auth_timeout(struct wpa_supplicant *wpa_s); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 36 | void wpas_notify_roam_time(struct wpa_supplicant *wpa_s); |
| 37 | void wpas_notify_roam_complete(struct wpa_supplicant *wpa_s); |
| 38 | void wpas_notify_session_length(struct wpa_supplicant *wpa_s); |
| 39 | void wpas_notify_bss_tm_status(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 40 | void wpas_notify_network_changed(struct wpa_supplicant *wpa_s); |
| 41 | void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s); |
| 42 | void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s); |
Sunil Ravi | 77d572f | 2023-01-17 23:58:31 +0000 | [diff] [blame] | 43 | void wpas_notify_mac_address_changed(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 44 | void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s); |
| 45 | void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s, |
| 46 | struct wpa_ssid *ssid); |
| 47 | void wpas_notify_network_selected(struct wpa_supplicant *wpa_s, |
| 48 | struct wpa_ssid *ssid); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 49 | void wpas_notify_network_request(struct wpa_supplicant *wpa_s, |
| 50 | struct wpa_ssid *ssid, |
| 51 | enum wpa_ctrl_req_type rtype, |
| 52 | const char *default_txt); |
Steven Liu | 850c2e0 | 2022-11-28 17:26:39 +0000 | [diff] [blame] | 53 | void wpas_notify_permanent_id_req_denied(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 54 | void wpas_notify_scanning(struct wpa_supplicant *wpa_s); |
| 55 | void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success); |
| 56 | void wpas_notify_scan_results(struct wpa_supplicant *wpa_s); |
| 57 | void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s, |
| 58 | const struct wps_credential *cred); |
| 59 | void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s, |
| 60 | struct wps_event_m2d *m2d); |
| 61 | void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s, |
| 62 | struct wps_event_fail *fail); |
| 63 | void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame] | 64 | void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 65 | void wpas_notify_network_added(struct wpa_supplicant *wpa_s, |
| 66 | struct wpa_ssid *ssid); |
| 67 | void wpas_notify_network_removed(struct wpa_supplicant *wpa_s, |
| 68 | struct wpa_ssid *ssid); |
| 69 | void wpas_notify_bss_added(struct wpa_supplicant *wpa_s, u8 bssid[], |
| 70 | unsigned int id); |
| 71 | void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s, u8 bssid[], |
| 72 | unsigned int id); |
| 73 | void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s, |
| 74 | unsigned int id); |
| 75 | void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s, |
| 76 | unsigned int id); |
| 77 | void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s, |
| 78 | unsigned int id); |
| 79 | void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s, |
| 80 | unsigned int id); |
| 81 | void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s, |
| 82 | unsigned int id); |
| 83 | void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s, |
| 84 | unsigned int id); |
| 85 | void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s, |
| 86 | unsigned int id); |
| 87 | void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s, |
| 88 | unsigned int id); |
| 89 | void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s, |
| 90 | unsigned int id); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 91 | void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 92 | void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name); |
| 93 | void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name); |
| 94 | |
| 95 | void wpas_notify_debug_level_changed(struct wpa_global *global); |
| 96 | void wpas_notify_debug_timestamp_changed(struct wpa_global *global); |
| 97 | void wpas_notify_debug_show_keys_changed(struct wpa_global *global); |
| 98 | void wpas_notify_suspend(struct wpa_global *global); |
| 99 | void wpas_notify_resume(struct wpa_global *global); |
| 100 | |
| 101 | void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 102 | const u8 *mac_addr, int authorized, |
Sunil Ravi | d8128a2 | 2023-11-06 23:53:58 +0000 | [diff] [blame] | 103 | const u8 *p2p_dev_addr, const u8 *ip); |
Dmitry Shmidt | 8bd70b7 | 2015-05-26 16:02:19 -0700 | [diff] [blame] | 104 | void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 105 | void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s, |
Roshan Pius | fd2fd66 | 2017-01-23 13:41:57 -0800 | [diff] [blame] | 106 | const u8 *addr, const struct p2p_peer_info *info, |
| 107 | const u8* peer_wfd_device_info, u8 peer_wfd_device_info_len, |
Jimmy Chen | 0133fc1 | 2021-03-04 13:56:11 +0800 | [diff] [blame] | 108 | const u8* peer_wfd_r2_device_info, u8 peer_wfd_r2_device_info_len, |
Roshan Pius | fd2fd66 | 2017-01-23 13:41:57 -0800 | [diff] [blame] | 109 | int new_device); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 110 | void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s, |
| 111 | const u8 *dev_addr); |
| 112 | void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s, |
| 113 | const struct wpa_ssid *ssid, |
| 114 | const char *role); |
| 115 | void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame] | 116 | const u8 *src, u16 dev_passwd_id, u8 go_intent); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 117 | void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 118 | struct p2p_go_neg_results *res); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 119 | void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s, |
| 120 | int status, const u8 *bssid); |
| 121 | void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s, |
| 122 | int freq, const u8 *sa, u8 dialog_token, |
| 123 | u16 update_indic, const u8 *tlvs, |
| 124 | size_t tlvs_len); |
| 125 | void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s, |
| 126 | const u8 *sa, u16 update_indic, |
| 127 | const u8 *tlvs, size_t tlvs_len); |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 128 | void wpas_notify_p2p_provision_discovery(struct wpa_supplicant *wpa_s, |
| 129 | const u8 *dev_addr, int request, |
| 130 | enum p2p_prov_disc_status status, |
| 131 | u16 config_methods, |
Sunil Ravi | 8bae425 | 2023-11-16 03:05:19 +0000 | [diff] [blame] | 132 | unsigned int generated_pin, |
| 133 | const char *group_ifname); |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 134 | void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 135 | struct wpa_ssid *ssid, int persistent, |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 136 | int client, const u8 *ip); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 137 | void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s, |
| 138 | const char *reason); |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 139 | void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s, |
| 140 | struct wpa_ssid *ssid); |
| 141 | void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s, |
| 142 | struct wpa_ssid *ssid); |
| 143 | |
| 144 | void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s, |
| 145 | struct wps_event_fail *fail); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 146 | |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 147 | void wpas_notify_certification(struct wpa_supplicant *wpa_s, |
| 148 | struct tls_cert_data *cert, |
| 149 | const char *cert_hash); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 150 | void wpas_notify_preq(struct wpa_supplicant *wpa_s, |
| 151 | const u8 *addr, const u8 *dst, const u8 *bssid, |
| 152 | const u8 *ie, size_t ie_len, u32 ssi_signal); |
| 153 | void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status, |
| 154 | const char *parameter); |
Ahmed ElArabawy | 9c86a7f | 2018-03-15 09:00:10 -0700 | [diff] [blame] | 155 | void wpas_notify_eap_error(struct wpa_supplicant *wpa_s, int error_code); |
Sunil Ravi | 036cec5 | 2023-03-29 11:35:17 -0700 | [diff] [blame] | 156 | void wpas_notify_psk_mismatch(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 157 | void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s, |
| 158 | struct wpa_ssid *ssid); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 159 | void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s, |
| 160 | struct wpa_ssid *ssid); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 161 | void wpas_notify_p2p_invitation_received(struct wpa_supplicant *wpa_s, |
| 162 | const u8 *sa, const u8 *go_dev_addr, |
| 163 | const u8 *bssid, int id, int op_freq); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 164 | void wpas_notify_mesh_group_started(struct wpa_supplicant *wpa_s, |
| 165 | struct wpa_ssid *ssid); |
| 166 | void wpas_notify_mesh_group_removed(struct wpa_supplicant *wpa_s, |
| 167 | const u8 *meshid, u8 meshid_len, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 168 | u16 reason_code); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 169 | void wpas_notify_mesh_peer_connected(struct wpa_supplicant *wpa_s, |
| 170 | const u8 *peer_addr); |
| 171 | void wpas_notify_mesh_peer_disconnected(struct wpa_supplicant *wpa_s, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 172 | const u8 *peer_addr, u16 reason_code); |
Roshan Pius | 04a9d74 | 2016-12-12 12:40:46 -0800 | [diff] [blame] | 173 | void wpas_notify_anqp_query_done(struct wpa_supplicant *wpa_s, const u8* bssid, |
| 174 | const char* result, |
| 175 | const struct wpa_bss_anqp *anqp); |
| 176 | void wpas_notify_hs20_icon_query_done(struct wpa_supplicant *wpa_s, const u8* bssid, |
| 177 | const char* file_name, const u8* image, |
| 178 | u32 image_length); |
| 179 | void wpas_notify_hs20_rx_subscription_remediation(struct wpa_supplicant *wpa_s, |
| 180 | const char* url, |
| 181 | u8 osu_method); |
| 182 | void wpas_notify_hs20_rx_deauth_imminent_notice(struct wpa_supplicant *wpa_s, |
| 183 | u8 code, u16 reauth_delay, |
| 184 | const char *url); |
Hai Shalom | 04a4ca6 | 2020-10-28 19:04:47 -0700 | [diff] [blame] | 185 | void wpas_notify_hs20_rx_terms_and_conditions_acceptance( |
| 186 | struct wpa_supplicant *wpa_s, const char *url); |
Hai Shalom | 706f99b | 2019-01-08 16:23:37 -0800 | [diff] [blame] | 187 | void wpas_notify_dpp_config_received(struct wpa_supplicant *wpa_s, |
Sunil Ravi | 546a7b5 | 2022-08-26 22:06:04 +0000 | [diff] [blame] | 188 | struct wpa_ssid *ssid, bool conn_status_requested); |
Hai Shalom | 706f99b | 2019-01-08 16:23:37 -0800 | [diff] [blame] | 189 | void wpas_notify_dpp_config_sent(struct wpa_supplicant *wpa_s); |
Sunil Ravi | 546a7b5 | 2022-08-26 22:06:04 +0000 | [diff] [blame] | 190 | void wpas_notify_dpp_connection_status_sent(struct wpa_supplicant *wpa_s, |
| 191 | enum dpp_status_error result); |
Hai Shalom | 706f99b | 2019-01-08 16:23:37 -0800 | [diff] [blame] | 192 | void wpas_notify_dpp_auth_success(struct wpa_supplicant *wpa_s); |
| 193 | void wpas_notify_dpp_resp_pending(struct wpa_supplicant *wpa_s); |
| 194 | void wpas_notify_dpp_not_compatible(struct wpa_supplicant *wpa_s); |
| 195 | void wpas_notify_dpp_missing_auth(struct wpa_supplicant *wpa_s); |
| 196 | void wpas_notify_dpp_configuration_failure(struct wpa_supplicant *wpa_s); |
| 197 | void wpas_notify_dpp_timeout(struct wpa_supplicant *wpa_s); |
| 198 | void wpas_notify_dpp_auth_failure(struct wpa_supplicant *wpa_s); |
| 199 | void wpas_notify_dpp_failure(struct wpa_supplicant *wpa_s); |
Hai Shalom | 0676811 | 2019-12-04 15:49:43 -0800 | [diff] [blame] | 200 | void wpas_notify_dpp_config_sent_wait_response(struct wpa_supplicant *wpa_s); |
| 201 | void wpas_notify_dpp_conn_status(struct wpa_supplicant *wpa_s, |
| 202 | enum dpp_status_error status, const char *ssid, |
| 203 | const char *channel_list, unsigned short band_list[], int size); |
| 204 | void wpas_notify_dpp_config_accepted(struct wpa_supplicant *wpa_s); |
| 205 | void wpas_notify_dpp_config_rejected(struct wpa_supplicant *wpa_s); |
Jimmy Chen | 39deead | 2020-10-14 23:47:20 +0800 | [diff] [blame] | 206 | void wpas_notify_transition_disable(struct wpa_supplicant *wpa_s, |
| 207 | struct wpa_ssid *ssid, |
| 208 | u8 bitmap); |
Sunil Ravi | 07c1762 | 2021-01-11 12:00:53 -0800 | [diff] [blame] | 209 | void wpas_notify_network_not_found(struct wpa_supplicant *wpa_s); |
Hai Shalom | c1a2144 | 2022-02-04 13:43:00 -0800 | [diff] [blame] | 210 | void wpas_notify_interworking_ap_added(struct wpa_supplicant *wpa_s, |
| 211 | struct wpa_bss *bss, |
| 212 | struct wpa_cred *cred, int excluded, |
| 213 | const char *type, int bh, int bss_load, |
| 214 | int conn_capab); |
| 215 | void wpas_notify_interworking_select_done(struct wpa_supplicant *wpa_s); |
Gabriel Biren | 3a2ec2c | 2022-03-07 17:59:41 +0000 | [diff] [blame] | 216 | void wpas_notify_eap_method_selected(struct wpa_supplicant *wpa_s, |
| 217 | const char* reason_string); |
| 218 | void wpas_notify_ssid_temp_disabled(struct wpa_supplicant *wpa_s, |
| 219 | const char *reason_string); |
| 220 | void wpas_notify_open_ssl_failure(struct wpa_supplicant *wpa_s, |
| 221 | const char *reason_string); |
Shivani Baranwal | 84940f8 | 2022-02-02 10:21:47 +0530 | [diff] [blame] | 222 | void wpas_notify_qos_policy_reset(struct wpa_supplicant *wpa_s); |
| 223 | void wpas_notify_qos_policy_request(struct wpa_supplicant *wpa_s, |
| 224 | struct dscp_policy_data *policies, int num_policies); |
Sunil Ravi | 65a724b | 2022-05-24 11:06:09 -0700 | [diff] [blame] | 225 | void wpas_notify_frequency_changed(struct wpa_supplicant *wpa_s, int frequency); |
Gabriel Biren | 9339823 | 2022-12-15 19:18:28 +0000 | [diff] [blame] | 226 | ssize_t wpas_get_certificate(const char *alias, uint8_t** value); |
Xinyue Ling | 1629ad8 | 2023-03-24 16:19:51 +0800 | [diff] [blame] | 227 | ssize_t wpas_list_aliases(const char *prefix, char ***aliases); |
Sunil Ravi | 77d572f | 2023-01-17 23:58:31 +0000 | [diff] [blame] | 228 | void wpas_notify_pmk_cache_added(struct wpa_supplicant *wpa_s, |
| 229 | struct rsn_pmksa_cache_entry *entry); |
| 230 | void wpas_notify_signal_change(struct wpa_supplicant *wpa_s); |
Swarn Singh | c450e7b | 2023-03-28 17:36:22 +0530 | [diff] [blame] | 231 | void wpas_notify_qos_policy_scs_response(struct wpa_supplicant *wpa_s, |
| 232 | unsigned int num_scs_resp, int **scs_resp); |
Veerendranath Jakkam | bc2fa49 | 2023-05-25 01:26:50 +0530 | [diff] [blame] | 233 | void wpas_notify_mlo_info_change_reason(struct wpa_supplicant *wpa_s, |
| 234 | enum mlo_info_change_reason reason); |
Hai Shalom | 5953285 | 2018-12-07 10:32:58 -0800 | [diff] [blame] | 235 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 236 | #endif /* NOTIFY_H */ |