ap_drv_ops.c 1015 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * hostapd - Driver operations
  3. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "hostapd.h"
  17. #include "driver_i.h"
  18. static int hostapd_set_ap_wps_ie(struct hostapd_data *hapd,
  19. const u8 *beacon_ie, size_t beacon_ie_len,
  20. const u8 *probe_resp_ie,
  21. size_t probe_resp_ie_len)
  22. {
  23. if (hostapd_set_wps_beacon_ie(hapd, hapd->wps_beacon_ie,
  24. hapd->wps_beacon_ie_len) < 0 ||
  25. hostapd_set_wps_probe_resp_ie(hapd, hapd->wps_probe_resp_ie,
  26. hapd->wps_probe_resp_ie_len) < 0)
  27. return -1;
  28. return 0;
  29. }
  30. void hostapd_set_driver_ops(struct hostapd_driver_ops *ops)
  31. {
  32. ops->set_ap_wps_ie = hostapd_set_ap_wps_ie;
  33. }