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.h | |
parent | 16d65c96b035a10aa93a96e5a789ebef9ca3a76d (diff) |
[libiwinfo] introduce country() and countrylist() (ISO3166 to driver code mapping)
Diffstat (limited to 'contrib/package/iwinfo/src/iwinfo.h')
-rw-r--r-- | contrib/package/iwinfo/src/iwinfo.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/contrib/package/iwinfo/src/iwinfo.h b/contrib/package/iwinfo/src/iwinfo.h index 9684b0995..448655057 100644 --- a/contrib/package/iwinfo/src/iwinfo.h +++ b/contrib/package/iwinfo/src/iwinfo.h @@ -88,5 +88,14 @@ struct iwinfo_scanlist_entry { struct iwinfo_crypto_entry crypto; }; -#endif +struct iwinfo_country_entry { + uint16_t iso3166; + uint8_t ccode[4]; +}; +struct iwinfo_iso3166_label { + uint16_t iso3166; + uint8_t name[28]; +}; + +#endif |