bss.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. os_memcpy(bss->bssid, bssid, ETH_ALEN);
  30. dl_list_add(&wt->bss, &bss->list);
  31. wpa_printf(MSG_DEBUG, "Discovered new BSS - " MACSTR,
  32. MAC2STR(bss->bssid));
  33. return bss;
  34. }
  35. void bss_deinit(struct wlantest_bss *bss)
  36. {
  37. dl_list_del(&bss->list);
  38. os_free(bss);
  39. }