bss.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * BSS list
  3. * Copyright (c) 2010, 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 "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "wlantest.h"
  17. struct wlantest_bss * bss_get(struct wlantest *wt, const u8 *bssid)
  18. {
  19. struct wlantest_bss *bss;
  20. if (bssid[0] & 0x01)
  21. return NULL; /* Skip group addressed frames */
  22. dl_list_for_each(bss, &wt->bss, struct wlantest_bss, list) {
  23. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
  24. return bss;
  25. }
  26. bss = os_zalloc(sizeof(*bss));
  27. if (bss == NULL)
  28. return NULL;
  29. dl_list_init(&bss->sta);
  30. os_memcpy(bss->bssid, bssid, ETH_ALEN);
  31. dl_list_add(&wt->bss, &bss->list);
  32. wpa_printf(MSG_DEBUG, "Discovered new BSS - " MACSTR,
  33. MAC2STR(bss->bssid));
  34. return bss;
  35. }
  36. void bss_deinit(struct wlantest_bss *bss)
  37. {
  38. struct wlantest_sta *sta, *n;
  39. dl_list_for_each_safe(sta, n, &bss->sta, struct wlantest_sta, list)
  40. sta_deinit(sta);
  41. dl_list_del(&bss->list);
  42. os_free(bss);
  43. }