Root/package/network/utils/iwinfo/src/include/iwinfo/wext.h

1/*
2 * iwinfo - Wireless Information Library - Linux Wireless Extension Headers
3 *
4 * Copyright (C) 2009-2010 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 "iwinfo/utils.h"
26#include "iwinfo/api/wext.h"
27
28
29int wext_probe(const char *ifname);
30int wext_get_mode(const char *ifname, int *buf);
31int wext_get_ssid(const char *ifname, char *buf);
32int wext_get_bssid(const char *ifname, char *buf);
33int wext_get_country(const char *ifname, char *buf);
34int wext_get_channel(const char *ifname, int *buf);
35int wext_get_frequency(const char *ifname, int *buf);
36int wext_get_frequency_offset(const char *ifname, int *buf);
37int wext_get_txpower(const char *ifname, int *buf);
38int wext_get_txpower_offset(const char *ifname, int *buf);
39int wext_get_bitrate(const char *ifname, int *buf);
40int wext_get_signal(const char *ifname, int *buf);
41int wext_get_noise(const char *ifname, int *buf);
42int wext_get_quality(const char *ifname, int *buf);
43int wext_get_quality_max(const char *ifname, int *buf);
44int wext_get_encryption(const char *ifname, char *buf);
45int wext_get_assoclist(const char *ifname, char *buf, int *len);
46int wext_get_txpwrlist(const char *ifname, char *buf, int *len);
47int wext_get_scanlist(const char *ifname, char *buf, int *len);
48int wext_get_freqlist(const char *ifname, char *buf, int *len);
49int wext_get_countrylist(const char *ifname, char *buf, int *len);
50int wext_get_hwmodelist(const char *ifname, int *buf);
51int wext_get_mbssid_support(const char *ifname, int *buf);
52int wext_get_hardware_id(const char *ifname, char *buf);
53int wext_get_hardware_name(const char *ifname, char *buf);
54void wext_close(void);
55
56static const struct iwinfo_ops wext_ops = {
57    .channel = wext_get_channel,
58    .frequency = wext_get_frequency,
59    .frequency_offset = wext_get_frequency_offset,
60    .txpower = wext_get_txpower,
61    .txpower_offset = wext_get_txpower_offset,
62    .bitrate = wext_get_bitrate,
63    .signal = wext_get_signal,
64    .noise = wext_get_noise,
65    .quality = wext_get_quality,
66    .quality_max = wext_get_quality_max,
67    .mbssid_support = wext_get_mbssid_support,
68    .hwmodelist = wext_get_hwmodelist,
69    .mode = wext_get_mode,
70    .ssid = wext_get_ssid,
71    .bssid = wext_get_bssid,
72    .country = wext_get_country,
73    .hardware_id = wext_get_hardware_id,
74    .hardware_name = wext_get_hardware_name,
75    .encryption = wext_get_encryption,
76    .assoclist = wext_get_assoclist,
77    .txpwrlist = wext_get_txpwrlist,
78    .scanlist = wext_get_scanlist,
79    .freqlist = wext_get_freqlist,
80    .countrylist = wext_get_countrylist,
81    .close = wext_close
82};
83
84#endif
85

Archive Download this file



interactive