2017-06-15 20:18:10 +02:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - DPP
|
|
|
|
* Copyright (c) 2017, Qualcomm Atheros, Inc.
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DPP_SUPPLICANT_H
|
|
|
|
#define DPP_SUPPLICANT_H
|
|
|
|
|
|
|
|
int wpas_dpp_qr_code(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
int wpas_dpp_bootstrap_gen(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
int wpas_dpp_bootstrap_remove(struct wpa_supplicant *wpa_s, const char *id);
|
|
|
|
const char * wpas_dpp_bootstrap_get_uri(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int id);
|
2017-06-22 13:51:21 +02:00
|
|
|
int wpas_dpp_bootstrap_info(struct wpa_supplicant *wpa_s, int id,
|
|
|
|
char *reply, int reply_size);
|
2017-06-15 20:18:12 +02:00
|
|
|
int wpas_dpp_auth_init(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
int wpas_dpp_listen(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
void wpas_dpp_listen_stop(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_dpp_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int freq);
|
|
|
|
void wpas_dpp_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
|
|
|
|
unsigned int freq);
|
|
|
|
void wpas_dpp_rx_action(struct wpa_supplicant *wpa_s, const u8 *src,
|
|
|
|
const u8 *buf, size_t len, unsigned int freq);
|
2017-06-15 20:18:15 +02:00
|
|
|
int wpas_dpp_configurator_add(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
int wpas_dpp_configurator_remove(struct wpa_supplicant *wpa_s, const char *id);
|
2017-07-04 16:48:44 +02:00
|
|
|
int wpas_dpp_configurator_sign(struct wpa_supplicant *wpa_s, const char *cmd);
|
2017-07-02 11:36:23 +02:00
|
|
|
int wpas_dpp_pkex_add(struct wpa_supplicant *wpa_s, const char *cmd);
|
|
|
|
int wpas_dpp_pkex_remove(struct wpa_supplicant *wpa_s, const char *id);
|
2017-06-15 20:18:10 +02:00
|
|
|
int wpas_dpp_init(struct wpa_supplicant *wpa_s);
|
|
|
|
void wpas_dpp_deinit(struct wpa_supplicant *wpa_s);
|
2017-06-18 19:19:25 +02:00
|
|
|
int wpas_dpp_check_connect(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
|
|
|
|
struct wpa_bss *bss);
|
2017-06-15 20:18:10 +02:00
|
|
|
|
|
|
|
#endif /* DPP_SUPPLICANT_H */
|