Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * hostapd / DPP integration |
| 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. |
| 4 | * |
| 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
| 7 | */ |
| 8 | |
| 9 | #ifndef DPP_HOSTAPD_H |
| 10 | #define DPP_HOSTAPD_H |
| 11 | |
| 12 | int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 13 | int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 14 | int hostapd_dpp_listen(struct hostapd_data *hapd, const char *cmd); |
| 15 | void hostapd_dpp_listen_stop(struct hostapd_data *hapd); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 16 | void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src, |
| 17 | const u8 *buf, size_t len, unsigned int freq); |
| 18 | void hostapd_dpp_tx_status(struct hostapd_data *hapd, const u8 *dst, |
| 19 | const u8 *data, size_t data_len, int ok); |
| 20 | struct wpabuf * |
| 21 | hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame^] | 22 | const u8 *query, size_t query_len, |
| 23 | const u8 *data, size_t data_len); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 24 | void hostapd_dpp_gas_status_handler(struct hostapd_data *hapd, int ok); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 25 | int hostapd_dpp_configurator_add(struct hostapd_data *hapd, const char *cmd); |
| 26 | int hostapd_dpp_configurator_remove(struct hostapd_data *hapd, const char *id); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 27 | int hostapd_dpp_configurator_sign(struct hostapd_data *hapd, const char *cmd); |
| 28 | int hostapd_dpp_configurator_get_key(struct hostapd_data *hapd, unsigned int id, |
| 29 | char *buf, size_t buflen); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 30 | int hostapd_dpp_pkex_add(struct hostapd_data *hapd, const char *cmd); |
| 31 | int hostapd_dpp_pkex_remove(struct hostapd_data *hapd, const char *id); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 32 | void hostapd_dpp_stop(struct hostapd_data *hapd); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 33 | int hostapd_dpp_init(struct hostapd_data *hapd); |
| 34 | void hostapd_dpp_deinit(struct hostapd_data *hapd); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 35 | void hostapd_dpp_init_global(struct hapd_interfaces *ifaces); |
| 36 | void hostapd_dpp_deinit_global(struct hapd_interfaces *ifaces); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 37 | |
| 38 | #endif /* DPP_HOSTAPD_H */ |