2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 * Purpose: Handles the management command interface functions
36 /*--------------------- Export Definitions -------------------------*/
40 #define AUTHENTICATE_TIMEOUT 1000 //ms
41 #define ASSOCIATE_TIMEOUT 1000 //ms
45 typedef enum tagCMD_CODE
{
48 WLAN_CMD_DISASSOCIATE
,
52 WLAN_CMD_CHANGE_BBSENSITIVITY
,
56 WLAN_CMD_CHANGE_ANTENNA
,
57 WLAN_CMD_REMOVE_ALLKEY
,
58 WLAN_CMD_MAC_DISPOWERSAVING
,
61 } CMD_CODE
, *PCMD_CODE
;
65 typedef enum tagCMD_STATUS
{
67 CMD_STATUS_SUCCESS
= 0,
73 } CMD_STATUS
, *PCMD_STATUS
;
76 typedef struct tagCMD_ITEM
{
78 unsigned char abyCmdDesireSSID
[WLAN_IEHDR_LEN
+ WLAN_SSID_MAXLEN
+ 1];
80 unsigned short wDeAuthenReason
;
83 } CMD_ITEM
, *PCMD_ITEM
;
86 typedef enum tagCMD_STATE
{
89 WLAN_CMD_DISASSOCIATE_START
,
91 WLAN_AUTHENTICATE_WAIT
,
93 WLAN_DISASSOCIATE_WAIT
,
94 WLAN_CMD_TX_PSPACKET_START
,
95 WLAN_CMD_AP_MODE_START
,
97 WLAN_CMD_CHECK_BBSENSITIVITY_CHANGE
,
99 } CMD_STATE
, *PCMD_STATE
;
103 /*--------------------- Export Classes ----------------------------*/
105 /*--------------------- Export Variables --------------------------*/
108 /*--------------------- Export Types ------------------------------*/
111 /*--------------------- Export Functions --------------------------*/
122 bool bClearBSSID_SCAN(
128 void *hDeviceContext
,
130 unsigned char *pbyItem0
135 void *hDeviceContext
,