2009-09-13 19:53:32 +02:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - Event notifications
|
2010-02-27 17:46:02 +01:00
|
|
|
* Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
|
2009-09-13 19:53:32 +02:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-09-13 19:53:32 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTIFY_H
|
|
|
|
#define NOTIFY_H
|
|
|
|
|
2011-06-12 23:31:56 +02:00
|
|
|
#include "p2p/p2p.h"
|
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
struct wps_credential;
|
|
|
|
struct wps_event_m2d;
|
|
|
|
struct wps_event_fail;
|
|
|
|
|
2009-10-15 20:15:10 +02: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 19:53:32 +02:00
|
|
|
void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
|
2009-12-26 09:35:08 +01:00
|
|
|
enum wpa_states new_state,
|
|
|
|
enum wpa_states old_state);
|
2012-06-30 15:43:50 +02:00
|
|
|
void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s);
|
2009-09-13 19:53:32 +02: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 12:54:59 +01:00
|
|
|
void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s);
|
2009-09-13 19:53:32 +02: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 18:03:04 +02: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 19:53:32 +02: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 14:46:51 +02:00
|
|
|
void wpas_notify_wps_event_pbc_overlap(struct wpa_supplicant *wpa_s);
|
2009-09-13 19:53:32 +02: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-27 23:42:51 +01: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 19:03:01 +01: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 15:37:37 +01:00
|
|
|
unsigned int id);
|
|
|
|
void wpas_notify_bss_ies_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
2010-01-06 19:03:01 +01:00
|
|
|
void wpas_notify_bss_rates_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
2014-09-04 20:10:54 +02:00
|
|
|
void wpas_notify_bss_seen(struct wpa_supplicant *wpa_s, unsigned int id);
|
2009-09-13 19:53:32 +02: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 12:00:22 +01: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 17:46:02 +01:00
|
|
|
void wpas_notify_suspend(struct wpa_global *global);
|
|
|
|
void wpas_notify_resume(struct wpa_global *global);
|
2009-09-13 19:53:32 +02:00
|
|
|
|
2011-03-16 14:58:41 +01:00
|
|
|
void wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s,
|
2011-12-22 21:47:41 +01:00
|
|
|
const u8 *mac_addr, int authorized,
|
|
|
|
const u8 *p2p_dev_addr);
|
2015-05-13 14:03:48 +02:00
|
|
|
void wpas_notify_p2p_find_stopped(struct wpa_supplicant *wpa_s);
|
2011-02-24 21:08:18 +01:00
|
|
|
void wpas_notify_p2p_device_found(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr, int new_device);
|
2011-02-24 21:22:16 +01:00
|
|
|
void wpas_notify_p2p_device_lost(struct wpa_supplicant *wpa_s,
|
|
|
|
const u8 *dev_addr);
|
2011-02-24 21:27:23 +01:00
|
|
|
void wpas_notify_p2p_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
const struct wpa_ssid *ssid,
|
|
|
|
const char *role);
|
2011-02-24 21:30:19 +01:00
|
|
|
void wpas_notify_p2p_go_neg_req(struct wpa_supplicant *wpa_s,
|
2015-06-02 07:47:33 +02:00
|
|
|
const u8 *src, u16 dev_passwd_id, u8 go_intent);
|
2011-02-24 21:34:52 +01:00
|
|
|
void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
|
2011-12-18 15:52:33 +01:00
|
|
|
struct p2p_go_neg_results *res);
|
2011-02-24 21:40:21 +01:00
|
|
|
void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
|
|
|
|
int status, const u8 *bssid);
|
2011-02-24 21:45:39 +01: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 21:47:34 +01: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 23:31:56 +02: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 23:35:37 +02:00
|
|
|
void wpas_notify_p2p_group_started(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid, int network_id,
|
|
|
|
int client);
|
2015-08-20 12:58:33 +02:00
|
|
|
void wpas_notify_p2p_group_formation_failure(struct wpa_supplicant *wpa_s,
|
|
|
|
const char *reason);
|
2011-06-23 20:25:13 +02:00
|
|
|
void wpas_notify_persistent_group_added(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2011-06-24 10:20:19 +02:00
|
|
|
void wpas_notify_persistent_group_removed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2011-02-24 21:08:18 +01:00
|
|
|
|
2011-06-25 10:47:04 +02:00
|
|
|
void wpas_notify_p2p_wps_failed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wps_event_fail *fail);
|
|
|
|
|
2011-07-05 11:22:32 +02:00
|
|
|
void wpas_notify_certification(struct wpa_supplicant *wpa_s, int depth,
|
2015-01-14 12:29:40 +01:00
|
|
|
const char *subject, const char *altsubject[],
|
|
|
|
int num_altsubject, const char *cert_hash,
|
2011-07-05 11:22:32 +02:00
|
|
|
const struct wpabuf *cert);
|
2012-04-01 20:13:38 +02: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 20:10:01 +02:00
|
|
|
void wpas_notify_eap_status(struct wpa_supplicant *wpa_s, const char *status,
|
|
|
|
const char *parameter);
|
2014-09-11 14:52:37 +02:00
|
|
|
void wpas_notify_network_bssid_set_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2015-02-07 15:17:11 +01:00
|
|
|
void wpas_notify_network_type_changed(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid);
|
2015-06-18 06:16:34 +02:00
|
|
|
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);
|
2011-07-05 11:22:32 +02:00
|
|
|
|
2009-09-13 19:53:32 +02:00
|
|
|
#endif /* NOTIFY_H */
|