scan_helpers.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * WPA Supplicant - Helper functions for scan result processing
  3. * Copyright (c) 2007-2008, 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 "drivers/driver.h"
  17. #include "common/ieee802_11_defs.h"
  18. const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
  19. {
  20. const u8 *end, *pos;
  21. pos = (const u8 *) (res + 1);
  22. end = pos + res->ie_len;
  23. while (pos + 1 < end) {
  24. if (pos + 2 + pos[1] > end)
  25. break;
  26. if (pos[0] == ie)
  27. return pos;
  28. pos += 2 + pos[1];
  29. }
  30. return NULL;
  31. }
  32. void wpa_scan_results_free(struct wpa_scan_results *res)
  33. {
  34. size_t i;
  35. if (res == NULL)
  36. return;
  37. for (i = 0; i < res->num; i++)
  38. os_free(res->res[i]);
  39. os_free(res->res);
  40. os_free(res);
  41. }