libs/iwinfo: forgot to clear string buffer in wrapper function
[project/luci.git] / libs / iwinfo / src / include / broadcom.h
1 /*
2  * Custom OID/ioctl definitions for
3  * Broadcom 802.11abg Networking Device Driver
4  *
5  * Definitions subject to change without notice.
6  *
7  * Copyright 2006, Broadcom Corporation
8  * All Rights Reserved.
9  * 
10  * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
11  * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
12  * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
13  * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
14  *
15  */
16
17 #ifndef _BROADCOM_H
18 #define _BROADCOM_H
19
20 #define WL_MCSSET_LEN                           16
21 #define WL_MAX_STA_COUNT                        32
22
23 #define WL_BSS_RSSI_OFFSET                      82
24 #define WL_BSS_NOISE_OFFSET                     84
25
26 #define WLC_IOCTL_MAGIC                         0x14e46c77
27 #define WLC_IOCTL_MAXLEN                        8192
28
29 #define WLC_GET_MAGIC                           0
30 #define WLC_GET_RATE                            12
31 #define WLC_GET_INFRA                           19
32 #define WLC_GET_BSSID                           23
33 #define WLC_GET_SSID                            25
34 #define WLC_GET_CHANNEL                         29
35 #define WLC_GET_PASSIVE                         48
36 #define WLC_GET_AP                                      117
37 #define WLC_GET_RSSI                            127
38 #define WLC_GET_WSEC                            133
39 #define WLC_GET_PHY_NOISE                       135
40 #define WLC_GET_BSS_INFO                        136
41 #define WLC_GET_ASSOCLIST                       159
42 #define WLC_GET_WPA_AUTH                        164
43 #define WLC_GET_VAR                                     262
44
45
46 struct wl_ether_addr {
47         uint8_t                                 octet[6];
48 };
49
50 struct wl_maclist {
51         uint                                    count;
52         struct wl_ether_addr    ea[1];
53 };
54
55 typedef struct wl_sta_rssi {
56         int                                             rssi;
57         char                                    mac[6];
58         uint16_t                                foo;
59 } wl_sta_rssi_t;
60
61 typedef struct wlc_ssid {
62         uint32_t                                ssid_len;
63         unsigned char                   ssid[32];
64 } wlc_ssid_t;
65
66 /* Linux network driver ioctl encoding */
67 typedef struct wl_ioctl {
68         uint32_t                                cmd;    /* common ioctl definition */
69         void                                    *buf;   /* pointer to user buffer */
70         uint32_t                                len;    /* length of user buffer */
71         uint8_t                                 set;    /* get or set request (optional) */
72         uint32_t                                used;   /* bytes read or written (optional) */
73         uint32_t                                needed; /* bytes needed (optional) */
74 } wl_ioctl_t;
75
76 #endif