diff options
| author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 20:44:34 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 20:44:34 +0000 |
| commit | 6f3aa200b3011fc296f167a57f99ad04b68c48b1 (patch) | |
| tree | 43a01b83a1c90ed7558a696ec96a0b5721b55b7b /openwrt/package/wlcompat/src/include/wlutils.h | |
| parent | 465dff41c8b67a4852f7b97a7da1b602d1eedd85 (diff) | |
| download | mtk-20170518-6f3aa200b3011fc296f167a57f99ad04b68c48b1.zip mtk-20170518-6f3aa200b3011fc296f167a57f99ad04b68c48b1.tar.gz mtk-20170518-6f3aa200b3011fc296f167a57f99ad04b68c48b1.tar.bz2 | |
move wlcompat from target/linux/package/ to package/.
SVN-Revision: 4002
Diffstat (limited to 'openwrt/package/wlcompat/src/include/wlutils.h')
| -rw-r--r-- | openwrt/package/wlcompat/src/include/wlutils.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/openwrt/package/wlcompat/src/include/wlutils.h b/openwrt/package/wlcompat/src/include/wlutils.h new file mode 100644 index 0000000..07e2536 --- /dev/null +++ b/openwrt/package/wlcompat/src/include/wlutils.h @@ -0,0 +1,59 @@ +/* + * Broadcom wireless network adapter utility functions + * + * Copyright 2004, Broadcom Corporation + * All Rights Reserved. + * + * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY + * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM + * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE. + * + * $Id$ + */ + +#ifndef _wlutils_h_ +#define _wlutils_h_ + +#include <typedefs.h> +#include <wlioctl.h> + +/* + * Pass a wlioctl request to the specified interface. + * @param name interface name + * @param cmd WLC_GET_MAGIC <= cmd < WLC_LAST + * @param buf buffer for passing in and/or receiving data + * @param len length of buf + * @return >= 0 if successful or < 0 otherwise + */ +extern int wl_ioctl(char *name, int cmd, void *buf, int len); + +/* + * Get the MAC (hardware) address of the specified interface. + * @param name interface name + * @param hwaddr 6-byte buffer for receiving address + * @return >= 0 if successful or < 0 otherwise + */ +extern int wl_hwaddr(char *name, unsigned char *hwaddr); + +/* + * Probe the specified interface. + * @param name interface name + * @return >= 0 if a Broadcom wireless device or < 0 otherwise + */ +extern int wl_probe(char *name); + +/* + * Set/Get named variable. + * @param name interface name + * @param var variable name + * @param val variable value/buffer + * @param len variable value/buffer length + * @return success == 0, failure != 0 + */ +extern int wl_set_val(char *name, char *var, void *val, int len); +extern int wl_get_val(char *name, char *var, void *val, int len); +extern int wl_set_int(char *name, char *var, int val); +extern int wl_get_int(char *name, char *var, int *val); + +#endif /* _wlutils_h_ */ |
