packages: sort network related packages into package/network/
[openwrt/openwrt.git] / package / network / utils / iwinfo / src / include / 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 <fcntl.h>
23
24 #include "iwinfo.h"
25 #include "iwinfo/utils.h"
26 #include "iwinfo/api/madwifi.h"
27
28 int madwifi_probe(const char *ifname);
29 int madwifi_get_mode(const char *ifname, int *buf);
30 int madwifi_get_ssid(const char *ifname, char *buf);
31 int madwifi_get_bssid(const char *ifname, char *buf);
32 int madwifi_get_country(const char *ifname, char *buf);
33 int madwifi_get_channel(const char *ifname, int *buf);
34 int madwifi_get_frequency(const char *ifname, int *buf);
35 int madwifi_get_frequency_offset(const char *ifname, int *buf);
36 int madwifi_get_txpower(const char *ifname, int *buf);
37 int madwifi_get_txpower_offset(const char *ifname, int *buf);
38 int madwifi_get_bitrate(const char *ifname, int *buf);
39 int madwifi_get_signal(const char *ifname, int *buf);
40 int madwifi_get_noise(const char *ifname, int *buf);
41 int madwifi_get_quality(const char *ifname, int *buf);
42 int madwifi_get_quality_max(const char *ifname, int *buf);
43 int madwifi_get_encryption(const char *ifname, char *buf);
44 int madwifi_get_assoclist(const char *ifname, char *buf, int *len);
45 int madwifi_get_txpwrlist(const char *ifname, char *buf, int *len);
46 int madwifi_get_scanlist(const char *ifname, char *buf, int *len);
47 int madwifi_get_freqlist(const char *ifname, char *buf, int *len);
48 int madwifi_get_countrylist(const char *ifname, char *buf, int *len);
49 int madwifi_get_hwmodelist(const char *ifname, int *buf);
50 int madwifi_get_mbssid_support(const char *ifname, int *buf);
51 int madwifi_get_hardware_id(const char *ifname, char *buf);
52 int madwifi_get_hardware_name(const char *ifname, char *buf);
53 void madwifi_close(void);
54
55 static const struct iwinfo_ops madwifi_ops = {
56 .channel = madwifi_get_channel,
57 .frequency = madwifi_get_frequency,
58 .frequency_offset = madwifi_get_frequency_offset,
59 .txpower = madwifi_get_txpower,
60 .txpower_offset = madwifi_get_txpower_offset,
61 .bitrate = madwifi_get_bitrate,
62 .signal = madwifi_get_signal,
63 .noise = madwifi_get_noise,
64 .quality = madwifi_get_quality,
65 .quality_max = madwifi_get_quality_max,
66 .mbssid_support = madwifi_get_mbssid_support,
67 .hwmodelist = madwifi_get_hwmodelist,
68 .mode = madwifi_get_mode,
69 .ssid = madwifi_get_ssid,
70 .bssid = madwifi_get_bssid,
71 .country = madwifi_get_country,
72 .hardware_id = madwifi_get_hardware_id,
73 .hardware_name = madwifi_get_hardware_name,
74 .encryption = madwifi_get_encryption,
75 .assoclist = madwifi_get_assoclist,
76 .txpwrlist = madwifi_get_txpwrlist,
77 .scanlist = madwifi_get_scanlist,
78 .freqlist = madwifi_get_freqlist,
79 .countrylist = madwifi_get_countrylist,
80 .close = madwifi_close
81 };
82
83 #endif