wifi.h 331 B

12345678910111213141516171819202122
  1. #ifndef WIFI_H
  2. #define WIFI_H
  3. #include <linux/wireless.h>
  4. struct wifi_common_data {
  5. int sock;
  6. struct iwreq req;
  7. };
  8. struct wifi_perc_data {
  9. struct wifi_common_data common;
  10. struct iw_statistics stat;
  11. };
  12. struct wifi_essid_data {
  13. struct wifi_common_data common;
  14. char id[IW_ESSID_MAX_SIZE + 1];
  15. };
  16. #endif /* WIFI_H */