dpp_supplicant.h 682 B

1234567891011121314151617181920
  1. /*
  2. * wpa_supplicant - DPP
  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. #ifndef DPP_SUPPLICANT_H
  9. #define DPP_SUPPLICANT_H
  10. int wpas_dpp_qr_code(struct wpa_supplicant *wpa_s, const char *cmd);
  11. int wpas_dpp_bootstrap_gen(struct wpa_supplicant *wpa_s, const char *cmd);
  12. int wpas_dpp_bootstrap_remove(struct wpa_supplicant *wpa_s, const char *id);
  13. const char * wpas_dpp_bootstrap_get_uri(struct wpa_supplicant *wpa_s,
  14. unsigned int id);
  15. int wpas_dpp_init(struct wpa_supplicant *wpa_s);
  16. void wpas_dpp_deinit(struct wpa_supplicant *wpa_s);
  17. #endif /* DPP_SUPPLICANT_H */