diff options
Diffstat (limited to 'package/iwinfo/src/include/iwinfo/wext.h')
-rw-r--r-- | package/iwinfo/src/include/iwinfo/wext.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/iwinfo/src/include/iwinfo/wext.h b/package/iwinfo/src/include/iwinfo/wext.h index 69b7a8e3d0..4d2f4aa0a2 100644 --- a/package/iwinfo/src/include/iwinfo/wext.h +++ b/package/iwinfo/src/include/iwinfo/wext.h @@ -47,6 +47,8 @@ int wext_get_freqlist(const char *ifname, char *buf, int *len); int wext_get_countrylist(const char *ifname, char *buf, int *len); int wext_get_hwmodelist(const char *ifname, int *buf); int wext_get_mbssid_support(const char *ifname, int *buf); +int wext_get_hardware_id(const char *ifname, char *buf); +int wext_get_hardware_name(const char *ifname, char *buf); void wext_close(void); static const struct iwinfo_ops wext_ops = { @@ -64,6 +66,8 @@ static const struct iwinfo_ops wext_ops = { .ssid = wext_get_ssid, .bssid = wext_get_bssid, .country = wext_get_country, + .hardware_id = wext_get_hardware_id, + .hardware_name = wext_get_hardware_name, .encryption = wext_get_encryption, .assoclist = wext_get_assoclist, .txpwrlist = wext_get_txpwrlist, |