wlantest.h 922 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * wlantest - IEEE 802.11 protocol monitoring and testing tool
  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. #ifndef WLANTEST_H
  15. #define WLANTEST_H
  16. struct wlantest {
  17. int monitor_sock;
  18. unsigned int rx_mgmt;
  19. unsigned int rx_ctrl;
  20. unsigned int rx_data;
  21. unsigned int fcs_error;
  22. };
  23. int read_cap_file(struct wlantest *wt, const char *fname);
  24. void wlantest_process(struct wlantest *wt, const u8 *data, size_t len);
  25. u32 crc32(const u8 *frame, size_t frame_len);
  26. int monitor_init(struct wlantest *wt, const char *ifname);
  27. void monitor_deinit(struct wlantest *wt);
  28. #endif /* WLANTEST_H */