diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-28 06:54:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-28 06:54:04 +0000 |
commit | 07fafab9c16ec600d6621c9c67d7474c63ff705b (patch) | |
tree | 427aab09af5ca4f10c6b325a0d566ed4bf964625 /contrib/package/iwinfo/src/iwinfo_wl.h | |
parent | 16d65c96b035a10aa93a96e5a789ebef9ca3a76d (diff) |
[libiwinfo] introduce country() and countrylist() (ISO3166 to driver code mapping)
Diffstat (limited to 'contrib/package/iwinfo/src/iwinfo_wl.h')
-rw-r--r-- | contrib/package/iwinfo/src/iwinfo_wl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/package/iwinfo/src/iwinfo_wl.h b/contrib/package/iwinfo/src/iwinfo_wl.h index 758c0b1c2b..f22f1f3178 100644 --- a/contrib/package/iwinfo/src/iwinfo_wl.h +++ b/contrib/package/iwinfo/src/iwinfo_wl.h @@ -26,6 +26,7 @@ int wl_probe(const char *ifname); int wl_get_mode(const char *ifname, char *buf); int wl_get_ssid(const char *ifname, char *buf); int wl_get_bssid(const char *ifname, char *buf); +int wl_get_country(const char *ifname, char *buf); int wl_get_channel(const char *ifname, int *buf); int wl_get_frequency(const char *ifname, int *buf); int wl_get_txpower(const char *ifname, int *buf); @@ -40,6 +41,7 @@ int wl_get_assoclist(const char *ifname, char *buf, int *len); int wl_get_txpwrlist(const char *ifname, char *buf, int *len); int wl_get_scanlist(const char *ifname, char *buf, int *len); int wl_get_freqlist(const char *ifname, char *buf, int *len); +int wl_get_countrylist(const char *ifname, char *buf, int *len); int wl_get_mbssid_support(const char *ifname, int *buf); #endif |