summaryrefslogtreecommitdiffhomepage
path: root/libs/iwinfo/src/iwinfo_wl.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-08-09 02:02:46 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-08-09 02:02:46 +0000
commit87460e8a05faef9c4bb2c68735eef4f5c5ac15d0 (patch)
treef48ae15da981d9d02c00672dc33a45dedc905a0f /libs/iwinfo/src/iwinfo_wl.h
parent68fb58dbcafe7f86b47821fc826f157bb9ef0924 (diff)
libs: introduce iwinfo - wireless information abstraction for proprietary broadcom, madwifi and mac80211 drivers.
Diffstat (limited to 'libs/iwinfo/src/iwinfo_wl.h')
-rw-r--r--libs/iwinfo/src/iwinfo_wl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/libs/iwinfo/src/iwinfo_wl.h b/libs/iwinfo/src/iwinfo_wl.h
new file mode 100644
index 000000000..77d8d8f0f
--- /dev/null
+++ b/libs/iwinfo/src/iwinfo_wl.h
@@ -0,0 +1,38 @@
+/*
+ * iwinfo - Wireless Information Library - Broadcom wl.o Headers
+ *
+ * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
+ *
+ * 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_WL_H_
+#define __IWINFO_WL_H_
+
+#include "iwinfo.h"
+#include "include/broadcom.h"
+
+int wl_probe(const char *ifname);
+int wl_get_mode(const char *ifname, char *buf);
+int wl_get_ssid(const char *ifname, char *buf);
+int wl_get_bssid(const char *ifname, char *buf);
+int wl_get_channel(const char *ifname, int *buf);
+int wl_get_bitrate(const char *ifname, int *buf);
+int wl_get_signal(const char *ifname, int *buf);
+int wl_get_noise(const char *ifname, int *buf);
+int wl_get_quality(const char *ifname, int *buf);
+int wl_get_quality_max(const char *ifname, int *buf);
+int wl_get_enctype(const char *ifname, char *buf);
+int wl_get_assoclist(const char *ifname, char *buf, int *len);
+
+#endif