diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-09 02:02:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-09 02:02:46 +0000 |
commit | 87460e8a05faef9c4bb2c68735eef4f5c5ac15d0 (patch) | |
tree | f48ae15da981d9d02c00672dc33a45dedc905a0f /libs/iwinfo/src/iwinfo.h | |
parent | 68fb58dbcafe7f86b47821fc826f157bb9ef0924 (diff) |
libs: introduce iwinfo - wireless information abstraction for proprietary broadcom, madwifi and mac80211 drivers.
Diffstat (limited to 'libs/iwinfo/src/iwinfo.h')
-rw-r--r-- | libs/iwinfo/src/iwinfo.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libs/iwinfo/src/iwinfo.h b/libs/iwinfo/src/iwinfo.h new file mode 100644 index 0000000000..af63183fb4 --- /dev/null +++ b/libs/iwinfo/src/iwinfo.h @@ -0,0 +1,33 @@ +#ifndef __IWINFO_H_ +#define __IWINFO_H_ + +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <fcntl.h> +#include <glob.h> +#include <ctype.h> +#include <stdint.h> + +#include <sys/ioctl.h> +#include <net/if.h> +#include <errno.h> + +#include "iwinfo_wl.h" +#include "iwinfo_madwifi.h" +#include "iwinfo_wext.h" + + +#define IWINFO_BUFSIZE 24 * 1024 + +struct iwinfo_assoclist_entry { + uint8_t mac[6]; + int8_t signal; + int8_t noise; +}; + +#endif + |