diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-02 20:48:08 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-02 20:48:08 +0000 |
commit | 89d48861e000a60cc6bd411c3a94ee6fdc3896d2 (patch) | |
tree | 71f04fc6e6f0045a4546984eda703f4c9a94ade1 /contrib/package/iwinfo/src/iwinfo_wext.h | |
parent | 714727c3445dc692b9923bcd3ca5b7565b906912 (diff) |
libiwinfo: major changes
- move own headers to include/iwinfo/ and shipped ones to include/iwinfo/api/
- split into libiwinfo and libiwinfo-lua which contains only the binding
- provide a public api for libiwinfo
- install development headers and shared objects
Diffstat (limited to 'contrib/package/iwinfo/src/iwinfo_wext.h')
-rw-r--r-- | contrib/package/iwinfo/src/iwinfo_wext.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/contrib/package/iwinfo/src/iwinfo_wext.h b/contrib/package/iwinfo/src/iwinfo_wext.h deleted file mode 100644 index db213fccc..000000000 --- a/contrib/package/iwinfo/src/iwinfo_wext.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * iwinfo - Wireless Information Library - Linux Wireless Extension Headers - * - * Copyright (C) 2009-2010 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_WEXT_H_ -#define __IWINFO_WEXT_H_ - -#include <fcntl.h> - -#include "iwinfo.h" -#include "iwinfo_utils.h" -#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_country(const char *ifname, char *buf); -int wext_get_channel(const char *ifname, int *buf); -int wext_get_frequency(const char *ifname, int *buf); -int wext_get_txpower(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_encryption(const char *ifname, char *buf); -int wext_get_assoclist(const char *ifname, char *buf, int *len); -int wext_get_txpwrlist(const char *ifname, char *buf, int *len); -int wext_get_scanlist(const char *ifname, char *buf, int *len); -int wext_get_freqlist(const char *ifname, char *buf, int *len); -int wext_get_countrylist(const char *ifname, char *buf, int *len); -int wext_get_hwmodelist(const char *ifname, int *buf); -int wext_get_mbssid_support(const char *ifname, int *buf); -void wext_close(void); - -#endif |