From 88436e8d37d4c6f60809f0ac6f190515673618a1 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 22 Jan 2007 14:46:37 +0000 Subject: remove lots of useless junk from the nvram package SVN-Revision: 6177 --- package/nvram/src/include/wlutils.h | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'package/nvram/src/include/wlutils.h') diff --git a/package/nvram/src/include/wlutils.h b/package/nvram/src/include/wlutils.h index 07e2536ca3..36eb3af3f5 100644 --- a/package/nvram/src/include/wlutils.h +++ b/package/nvram/src/include/wlutils.h @@ -16,7 +16,30 @@ #define _wlutils_h_ #include -#include + +/* check this magic number */ +#define WLC_IOCTL_MAGIC 0x14e46c77 + +/* maximum length buffer required */ +#define WLC_IOCTL_SMLEN 256 + +#define WLC_IOCTL_VERSION 1 + +#define WLC_GET_MAGIC 0 +#define WLC_GET_VERSION 1 +#define WLC_GET_VAR 262 /* get value of named variable */ +#define WLC_SET_VAR 263 /* set named variable to value */ + +/* Linux network driver ioctl encoding */ +typedef struct wl_ioctl { + uint cmd; /* common ioctl definition */ + void *buf; /* pointer to user buffer */ + uint len; /* length of user buffer */ + bool set; /* get or set request (optional) */ + uint used; /* bytes read or written (optional) */ + uint needed; /* bytes needed (optional) */ +} wl_ioctl_t; + /* * Pass a wlioctl request to the specified interface. -- cgit v1.2.3