X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=contrib%2Fpackage%2Fiwinfo%2Fsrc%2Fiwinfo_wl.h;h=97a8741b7b2e83984ccf0ef2b7fc107a8dcbf8d8;hp=758c0b1c2bab1f1f0b70ec864e0b0942caea0c34;hb=5039b43e953c16c8510ff89b2c90470882ec55c3;hpb=653c9e782f54f3ab980b678227d0429259ce038b diff --git a/contrib/package/iwinfo/src/iwinfo_wl.h b/contrib/package/iwinfo/src/iwinfo_wl.h index 758c0b1c2..97a8741b7 100644 --- a/contrib/package/iwinfo/src/iwinfo_wl.h +++ b/contrib/package/iwinfo/src/iwinfo_wl.h @@ -19,6 +19,8 @@ #ifndef __IWINFO_WL_H_ #define __IWINFO_WL_H_ +#include + #include "iwinfo.h" #include "include/broadcom.h" @@ -26,6 +28,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 +43,9 @@ 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_hwmodelist(const char *ifname, int *buf); int wl_get_mbssid_support(const char *ifname, int *buf); +void wl_close(void); #endif