From 87460e8a05faef9c4bb2c68735eef4f5c5ac15d0 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 9 Aug 2009 02:02:46 +0000 Subject: libs: introduce iwinfo - wireless information abstraction for proprietary broadcom, madwifi and mac80211 drivers. --- libs/iwinfo/src/iwinfo_wext.h | 52 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 libs/iwinfo/src/iwinfo_wext.h (limited to 'libs/iwinfo/src/iwinfo_wext.h') diff --git a/libs/iwinfo/src/iwinfo_wext.h b/libs/iwinfo/src/iwinfo_wext.h new file mode 100644 index 0000000000..d4914ff2e6 --- /dev/null +++ b/libs/iwinfo/src/iwinfo_wext.h @@ -0,0 +1,52 @@ +/* + * iwinfo - Wireless Information Library - Linux Wireless Extension Headers + * + * Copyright (C) 2009 Jo-Philipp Wich + * + * The iwinfo library is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation. + * + * The iwinfo library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with the iwinfo library. If not, see http://www.gnu.org/licenses/. + */ + +#ifndef __IWINFO_WEXT_H_ +#define __IWINFO_WEXT_H_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "include/wext.h" + +int wext_probe(const char *ifname); +int wext_get_mode(const char *ifname, char *buf); +int wext_get_ssid(const char *ifname, char *buf); +int wext_get_bssid(const char *ifname, char *buf); +int wext_get_channel(const char *ifname, int *buf); +int wext_get_bitrate(const char *ifname, int *buf); +int wext_get_signal(const char *ifname, int *buf); +int wext_get_noise(const char *ifname, int *buf); +int wext_get_quality(const char *ifname, int *buf); +int wext_get_quality_max(const char *ifname, int *buf); +int wext_get_enctype(const char *ifname, char *buf); +int wext_get_assoclist(const char *ifname, char *buf, int *len); + +#endif -- cgit v1.2.3