libiwinfo: support txpwrlist(), freqlist() and countrylist() for radioX pseudodevices...
[project/luci.git] / contrib / package / iwinfo / src / iwinfo_wext.h
1 /*
2  * iwinfo - Wireless Information Library - Linux Wireless Extension Headers
3  *
4  *   Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
5  *
6  * The iwinfo library is free software: you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation.
9  *
10  * The iwinfo library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with the iwinfo library. If not, see http://www.gnu.org/licenses/.
17  */
18
19 #ifndef __IWINFO_WEXT_H_
20 #define __IWINFO_WEXT_H_
21
22 #include <fcntl.h>
23
24 #include "iwinfo.h"
25 #include "include/wext.h"
26
27
28 int wext_dbm2mw(int in);
29 int wext_mw2dbm(int in);
30
31 int wext_probe(const char *ifname);
32 int wext_get_mode(const char *ifname, char *buf);
33 int wext_get_ssid(const char *ifname, char *buf);
34 int wext_get_bssid(const char *ifname, char *buf);
35 int wext_get_country(const char *ifname, char *buf);
36 int wext_get_channel(const char *ifname, int *buf);
37 int wext_get_frequency(const char *ifname, int *buf);
38 int wext_get_txpower(const char *ifname, int *buf);
39 int wext_get_bitrate(const char *ifname, int *buf);
40 int wext_get_signal(const char *ifname, int *buf);
41 int wext_get_noise(const char *ifname, int *buf);
42 int wext_get_quality(const char *ifname, int *buf);
43 int wext_get_quality_max(const char *ifname, int *buf);
44 int wext_get_encryption(const char *ifname, char *buf);
45 int wext_get_assoclist(const char *ifname, char *buf, int *len);
46 int wext_get_txpwrlist(const char *ifname, char *buf, int *len);
47 int wext_get_scanlist(const char *ifname, char *buf, int *len);
48 int wext_get_freqlist(const char *ifname, char *buf, int *len);
49 int wext_get_countrylist(const char *ifname, char *buf, int *len);
50 int wext_get_mbssid_support(const char *ifname, int *buf);
51 void wext_scan_close(void);
52 void wext_close(void);
53
54 #endif