diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-27 13:12:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-27 13:12:46 +0000 |
commit | 653c9e782f54f3ab980b678227d0429259ce038b (patch) | |
tree | fecabca7b888702640f75abf539b4e2b9d04a707 /contrib/package/iwinfo/src/iwinfo_wext.h | |
parent | 01e8069ee0e6eaa02391d8ac6cafe338191b5d00 (diff) |
[contrib] introduce libiwinfo, splitted apart from LuCI for general usage
- added NL80211 interface for b43 / ath5k / ath9k
- introduces txpower() and encryption() methods
- introduces iwinfo cli frontend for data access
- supports scanning in AP mode (experimental) and through wpa_supplicant
Diffstat (limited to 'contrib/package/iwinfo/src/iwinfo_wext.h')
-rw-r--r-- | contrib/package/iwinfo/src/iwinfo_wext.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/contrib/package/iwinfo/src/iwinfo_wext.h b/contrib/package/iwinfo/src/iwinfo_wext.h new file mode 100644 index 000000000..579b3e81c --- /dev/null +++ b/contrib/package/iwinfo/src/iwinfo_wext.h @@ -0,0 +1,48 @@ +/* + * iwinfo - Wireless Information Library - Linux Wireless Extension Headers + * + * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org> + * + * The iwinfo library is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation. + * + * The iwinfo library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with the iwinfo library. If not, see http://www.gnu.org/licenses/. + */ + +#ifndef __IWINFO_WEXT_H_ +#define __IWINFO_WEXT_H_ + +#include "iwinfo.h" +#include "include/wext.h" + + +int wext_dbm2mw(int in); +int wext_mw2dbm(int in); + +int wext_probe(const char *ifname); +int wext_get_mode(const char *ifname, char *buf); +int wext_get_ssid(const char *ifname, char *buf); +int wext_get_bssid(const char *ifname, char *buf); +int wext_get_channel(const char *ifname, int *buf); +int wext_get_frequency(const char *ifname, int *buf); +int wext_get_txpower(const char *ifname, int *buf); +int wext_get_bitrate(const char *ifname, int *buf); +int wext_get_signal(const char *ifname, int *buf); +int wext_get_noise(const char *ifname, int *buf); +int wext_get_quality(const char *ifname, int *buf); +int wext_get_quality_max(const char *ifname, int *buf); +int wext_get_encryption(const char *ifname, char *buf); +int wext_get_assoclist(const char *ifname, char *buf, int *len); +int wext_get_txpwrlist(const char *ifname, char *buf, int *len); +int wext_get_scanlist(const char *ifname, char *buf, int *len); +int wext_get_freqlist(const char *ifname, char *buf, int *len); +int wext_get_mbssid_support(const char *ifname, int *buf); + +#endif |