sta.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * STA 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_sta * sta_get(struct wlantest_bss *bss, const u8 *addr)
  18. {
  19. struct wlantest_sta *sta;
  20. if (addr[0] & 0x01)
  21. return NULL; /* Skip group addressed frames */
  22. dl_list_for_each(sta, &bss->sta, struct wlantest_sta, list) {
  23. if (os_memcmp(sta->addr, addr, ETH_ALEN) == 0)
  24. return sta;
  25. }
  26. sta = os_zalloc(sizeof(*sta));
  27. if (sta == NULL)
  28. return NULL;
  29. os_memcpy(sta->addr, addr, ETH_ALEN);
  30. dl_list_add(&bss->sta, &sta->list);
  31. wpa_printf(MSG_DEBUG, "Discovered new STA " MACSTR " in BSS " MACSTR,
  32. MAC2STR(sta->addr), MAC2STR(bss->bssid));
  33. return sta;
  34. }
  35. void sta_deinit(struct wlantest_sta *sta)
  36. {
  37. dl_list_del(&sta->list);
  38. os_free(sta);
  39. }