bss_load.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * BSS Load Element / Channel Utilization
  3. * Copyright (c) 2014, 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. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "hostapd.h"
  12. #include "bss_load.h"
  13. #include "ap_drv_ops.h"
  14. #include "beacon.h"
  15. static void update_channel_utilization(void *eloop_data, void *user_data)
  16. {
  17. struct hostapd_data *hapd = eloop_data;
  18. unsigned int sec, usec;
  19. int err;
  20. if (!(hapd->beacon_set_done && hapd->started))
  21. return;
  22. err = hostapd_drv_get_survey(hapd, hapd->iface->freq);
  23. if (err) {
  24. wpa_printf(MSG_ERROR, "BSS Load: Failed to get survey data");
  25. return;
  26. }
  27. ieee802_11_set_beacon(hapd);
  28. sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
  29. usec = (hapd->bss_load_update_timeout % 1000) * 1024;
  30. eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
  31. NULL);
  32. }
  33. int bss_load_update_init(struct hostapd_data *hapd)
  34. {
  35. struct hostapd_bss_config *conf = hapd->conf;
  36. struct hostapd_config *iconf = hapd->iconf;
  37. unsigned int sec, usec;
  38. if (!conf->bss_load_update_period || !iconf->beacon_int)
  39. return -1;
  40. hapd->bss_load_update_timeout = conf->bss_load_update_period *
  41. iconf->beacon_int;
  42. sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
  43. usec = (hapd->bss_load_update_timeout % 1000) * 1024;
  44. eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
  45. NULL);
  46. return 0;
  47. }
  48. void bss_load_update_deinit(struct hostapd_data *hapd)
  49. {
  50. eloop_cancel_timeout(update_channel_utilization, hapd, NULL);
  51. }