2009-09-13 20:53:32 +03:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - Event notifications
|
2010-02-27 18:46:02 +02:00
|
|
|
* Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
|
2009-09-13 20:53:32 +03:00
|
|
|
*
|
2012-02-11 16:46:35 +02:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-09-13 20:53:32 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTIFY_H
|
|
|
|
#define NOTIFY_H
|
|
|
|
|
2011-06-12 14:31:56 -07:00
|
|
|
#include "p2p/p2p.h"
|
|
|
|
|
2009-09-13 20:53:32 +03:00
|
|
|
struct wps_credential;
|
|
|
|
struct wps_event_m2d;
|
|
|
|
struct wps_event_fail;
|
|
|
|
|
2009-10-15 21:15:10 +03:00
|
|
|
int wpas_notify_supplicant_initialized(struct wpa_global *global);
|
|
|
|
void wpas_notify_supplicant_deinitialized(struct wpa_global *global);
|
|
|
|
int wpas_notify_iface_added(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
|
2009-12-26 10:35:08 +02:00
|
|
|
enum wpa_states new_state,
|
|
|
|
enum wpa_states old_state);
|
2012-06-30 16:43:50 +03:00
|
|
|
void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s);
|
2016-03-03 10:48:09 -08:00
|
|
|
void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_network_changed(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s);
|
2011-03-15 13:54:59 +02:00
|
|
|
void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
|
|
|
void wpas_notify_network_selected(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2011-10-24 11:03:04 -05:00
|
|
|
void wpas_notify_network_request(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
|
|
|
enum wpa_ctrl_req_type rtype,
|
|
|
|
const char *default_txt);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_scanning(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_notify_scan_done(struct wpa_supplicant *wpa_s, int success);
|
|
|
|
void wpas_notify_scan_results(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_notify_wps_credential(struct wpa_supplicant *wpa_s,
|
|
|
|
const struct wps_credential *cred);
|
|
|
|
void wpas_notify_wps_event_m2d(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_m2d *m2d);
|
|
|
|
void wpas_notify_wps_event_fail(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_fail *fail);
|
|
|
|
void wpas_notify_wps_event_success(struct wpa_supplicant *wpa_s);
|
2015-06-05 18:16:51 +05:30
|
|
|
void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_network_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
|
|
|
void wpas_notify_network_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2009-12-28 00:42:51 +02:00
|
|
|
void wpas_notify_bss_added(struct wpa_supplicant *wpa_s, u8 bssid[],
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_removed(struct wpa_supplicant *wpa_s, u8 bssid[],
|
|
|
|
unsigned int id);
|
2010-01-06 20:03:01 +02:00
|
|
|
void wpas_notify_bss_freq_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_signal_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_privacy_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_mode_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_wpaie_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_rsnie_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_wps_changed(struct wpa_supplicant *wpa_s,
|
2010-01-16 16:37:37 +02:00
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
2010-01-06 20:03:01 +02:00
|
|
|
void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
2014-09-04 13:10:54 -05:00
|
|
|
void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id);
|
2009-09-13 20:53:32 +03:00
|
|
|
void wpas_notify_blob_added(struct wpa_supplicant *wpa_s, const char *name);
|
|
|
|
void wpas_notify_blob_removed(struct wpa_supplicant *wpa_s, const char *name);
|
|
|
|
|
2010-01-01 13:00:22 +02:00
|
|
|
void wpas_notify_debug_level_changed(struct wpa_global *global);
|
|
|
|
void wpas_notify_debug_timestamp_changed(struct wpa_global *global);
|
|
|
|
void wpas_notify_debug_show_keys_changed(struct wpa_global *global);
|
2010-02-27 18:46:02 +02:00
|
|
|
void wpas_notify_suspend(struct wpa_global *global);
|
|
|
|
void wpas_notify_resume(struct wpa_global *global);
|
2009-09-13 20:53:32 +03:00
|
|
|
|
2011-03-16 15:58:41 +02:00
|
|
|
void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
|
2011-12-22 22:47:41 +02:00
|
|
|
const u8 *mac_addr, int authorized,
|
|
|
|
const u8 *p2p_dev_addr);
|
2015-05-13 17:33:48 +05:30
|
|
|
void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s);
|
2011-02-24 22:08:18 +02:00
|
|
|
void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr, int new_device);
|
2011-02-24 22:22:16 +02:00
|
|
|
void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr);
|
2011-02-24 22:27:23 +02:00
|
|
|
void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
const struct wpa_ssid *ssid,
|
|
|
|
const char *role);
|
2011-02-24 22:30:19 +02:00
|
|
|
void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
|
2015-06-02 05:47:33 +00:00
|
|
|
const u8 *src, u16 dev_passwd_id, u8 go_intent);
|
2011-02-24 22:34:52 +02:00
|
|
|
void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
|
2011-12-18 16:52:33 +02:00
|
|
|
struct p2p_go_neg_results *res);
|
2011-02-24 22:40:21 +02:00
|
|
|
void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
|
|
|
|
int status, const u8 *bssid);
|
2011-02-24 22:45:39 +02:00
|
|
|
void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
|
|
|
|
int freq, const u8 *sa, u8 dialog_token,
|
|
|
|
u16 update_indic, const u8 *tlvs,
|
|
|
|
size_t tlvs_len);
|
2011-02-24 22:47:34 +02:00
|
|
|
void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *sa, u16 update_indic,
|
|
|
|
const u8 *tlvs, size_t tlvs_len);
|
2011-06-12 14:31:56 -07:00
|
|
|
void wpas_notify_p2p_provision_discovery(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr, int request,
|
|
|
|
enum p2p_prov_disc_status status,
|
|
|
|
u16 config_methods,
|
|
|
|
unsigned int generated_pin);
|
2011-06-12 14:35:37 -07:00
|
|
|
void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s,
|
2016-05-30 13:08:31 +05:30
|
|
|
struct wpa_ssid *ssid, int persistent,
|
2016-11-02 15:50:28 +05:30
|
|
|
int client, const u8 *ip);
|
2015-08-20 16:28:33 +05:30
|
|
|
void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
|
|
|
|
const char *reason);
|
2011-06-23 21:25:13 +03:00
|
|
|
void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2011-06-24 11:20:19 +03:00
|
|
|
void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2011-02-24 22:08:18 +02:00
|
|
|
|
2011-06-25 11:47:04 +03:00
|
|
|
void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_fail *fail);
|
|
|
|
|
2011-07-05 12:22:32 +03:00
|
|
|
void wpas_notify_certification(struct wpa_supplicant *wpa_s, int depth,
|
2015-01-14 13:29:40 +02:00
|
|
|
const char *subject, const char *altsubject[],
|
|
|
|
int num_altsubject, const char *cert_hash,
|
2011-07-05 12:22:32 +03:00
|
|
|
const struct wpabuf *cert);
|
2012-04-01 21:13:38 +03:00
|
|
|
void wpas_notify_preq(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *addr, const u8 *dst, const u8 *bssid,
|
|
|
|
const u8 *ie, size_t ie_len, u32 ssi_signal);
|
2012-06-04 21:10:01 +03:00
|
|
|
void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status,
|
|
|
|
const char *parameter);
|
2018-03-15 09:00:10 -07:00
|
|
|
void wpas_notify_eap_error(struct wpa_supplicant *wpa_s, int error_code);
|
2014-09-11 15:52:37 +03:00
|
|
|
void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2015-02-07 16:17:11 +02:00
|
|
|
void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2015-06-18 09:46:34 +05:30
|
|
|
void wpas_notify_p2p_invitation_received(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *sa, const u8 *go_dev_addr,
|
|
|
|
const u8 *bssid, int id, int op_freq);
|
2017-07-18 12:37:51 +05:30
|
|
|
void wpas_notify_mesh_group_started(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2017-07-18 12:37:53 +05:30
|
|
|
void wpas_notify_mesh_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *meshid, u8 meshid_len,
|
|
|
|
int reason_code);
|
2017-07-18 12:37:54 +05:30
|
|
|
void wpas_notify_mesh_peer_connected(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *peer_addr);
|
2017-07-18 12:37:55 +05:30
|
|
|
void wpas_notify_mesh_peer_disconnected(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *peer_addr, int reason_code);
|
2011-07-05 12:22:32 +03:00
|
|
|
|
2009-09-13 20:53:32 +03:00
|
|
|
#endif /* NOTIFY_H */
|