10be96aeb9a540a4bb30fdbeea902f0578d7f64a
2 * iwinfo - Wireless Information Library - Broadcom wl.o Headers
4 * Copyright (C) 2009-2010 Jo-Philipp Wich <xm@subsignal.org>
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.
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.
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/.
19 #ifndef __IWINFO_WL_H_
20 #define __IWINFO_WL_H_
25 #include "iwinfo/utils.h"
26 #include "iwinfo/api/broadcom.h"
28 int wl_probe(const char *ifname
);
29 int wl_get_mode(const char *ifname
, char *buf
);
30 int wl_get_ssid(const char *ifname
, char *buf
);
31 int wl_get_bssid(const char *ifname
, char *buf
);
32 int wl_get_country(const char *ifname
, char *buf
);
33 int wl_get_channel(const char *ifname
, int *buf
);
34 int wl_get_frequency(const char *ifname
, int *buf
);
35 int wl_get_txpower(const char *ifname
, int *buf
);
36 int wl_get_bitrate(const char *ifname
, int *buf
);
37 int wl_get_signal(const char *ifname
, int *buf
);
38 int wl_get_noise(const char *ifname
, int *buf
);
39 int wl_get_quality(const char *ifname
, int *buf
);
40 int wl_get_quality_max(const char *ifname
, int *buf
);
41 int wl_get_enctype(const char *ifname
, char *buf
);
42 int wl_get_encryption(const char *ifname
, char *buf
);
43 int wl_get_assoclist(const char *ifname
, char *buf
, int *len
);
44 int wl_get_txpwrlist(const char *ifname
, char *buf
, int *len
);
45 int wl_get_scanlist(const char *ifname
, char *buf
, int *len
);
46 int wl_get_freqlist(const char *ifname
, char *buf
, int *len
);
47 int wl_get_countrylist(const char *ifname
, char *buf
, int *len
);
48 int wl_get_hwmodelist(const char *ifname
, int *buf
);
49 int wl_get_mbssid_support(const char *ifname
, int *buf
);
50 int wl_get_hardware_id(const char *ifname
, char *buf
);
51 int wl_get_hardware_name(const char *ifname
, char *buf
);
54 static const struct iwinfo_ops wl_ops
= {
55 .channel
= wl_get_channel
,
56 .frequency
= wl_get_frequency
,
57 .txpower
= wl_get_txpower
,
58 .bitrate
= wl_get_bitrate
,
59 .signal
= wl_get_signal
,
60 .noise
= wl_get_noise
,
61 .quality
= wl_get_quality
,
62 .quality_max
= wl_get_quality_max
,
63 .mbssid_support
= wl_get_mbssid_support
,
64 .hwmodelist
= wl_get_hwmodelist
,
67 .bssid
= wl_get_bssid
,
68 .country
= wl_get_country
,
69 .hardware_id
= wl_get_hardware_id
,
70 .hardware_name
= wl_get_hardware_name
,
71 .encryption
= wl_get_encryption
,
72 .assoclist
= wl_get_assoclist
,
73 .txpwrlist
= wl_get_txpwrlist
,
74 .scanlist
= wl_get_scanlist
,
75 .freqlist
= wl_get_freqlist
,
76 .countrylist
= wl_get_countrylist
,
This page took 0.055675 seconds and 3 git commands to generate.