X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=contrib%2Fpackage%2Fiwinfo%2Fsrc%2Fiwinfo_wl.h;h=b734cb6fb15be1e1a738ffa97a0f17fac5ec88ef;hp=758c0b1c2bab1f1f0b70ec864e0b0942caea0c34;hb=dabf916db20da0013033efb763b632aecaea20a5;hpb=653c9e782f54f3ab980b678227d0429259ce038b diff --git a/contrib/package/iwinfo/src/iwinfo_wl.h b/contrib/package/iwinfo/src/iwinfo_wl.h index 758c0b1c2..b734cb6fb 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,8 @@ 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); +void wl_close(void); #endif