libs/iwinfo: implement *_get_frequency() - operating freq in mhz
[project/luci.git] / libs / iwinfo / src / iwinfo_madwifi.h
1 /*
2  * iwinfo - Wireless Information Library - Madwifi 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_MADWIFI_H_
20 #define __IWINFO_MADWIFI_H_
21
22 #include "iwinfo.h"
23 #include "include/madwifi.h"
24
25 int madwifi_probe(const char *ifname);
26 int madwifi_get_mode(const char *ifname, char *buf);
27 int madwifi_get_ssid(const char *ifname, char *buf);
28 int madwifi_get_bssid(const char *ifname, char *buf);
29 int madwifi_get_channel(const char *ifname, int *buf);
30 int madwifi_get_frequency(const char *ifname, int *buf);
31 int madwifi_get_bitrate(const char *ifname, int *buf);
32 int madwifi_get_signal(const char *ifname, int *buf);
33 int madwifi_get_noise(const char *ifname, int *buf);
34 int madwifi_get_quality(const char *ifname, int *buf);
35 int madwifi_get_quality_max(const char *ifname, int *buf);
36 int madwifi_get_enctype(const char *ifname, char *buf);
37 int madwifi_get_assoclist(const char *ifname, char *buf, int *len);
38
39 #endif