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
35 #define AUTHENTICATE_TIMEOUT 1000 //ms
36 #define ASSOCIATE_TIMEOUT 1000 //ms
39 typedef enum tagCMD_CODE {
42 WLAN_CMD_DISASSOCIATE,
46 WLAN_CMD_CHANGE_BBSENSITIVITY,
50 WLAN_CMD_CHANGE_ANTENNA,
51 WLAN_CMD_REMOVE_ALLKEY,
52 WLAN_CMD_MAC_DISPOWERSAVING,
55 WLAN_CMD_CONFIGURE_FILTER
56 } CMD_CODE, *PCMD_CODE;
60 typedef enum tagCMD_STATUS {
62 CMD_STATUS_SUCCESS = 0,
68 } CMD_STATUS, *PCMD_STATUS;
70 typedef struct tagCMD_ITEM {
72 u8 abyCmdDesireSSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
77 } CMD_ITEM, *PCMD_ITEM;
80 typedef enum tagCMD_STATE {
83 WLAN_CMD_DISASSOCIATE_START,
84 WLAN_CMD_DEAUTHEN_START,
86 WLAN_AUTHENTICATE_WAIT,
88 WLAN_DISASSOCIATE_WAIT,
89 WLAN_CMD_TX_PSPACKET_START,
91 WLAN_CMD_CHANGE_BBSENSITIVITY_START,
92 WLAN_CMD_SETPOWER_START,
93 WLAN_CMD_AP_MODE_START,
94 WLAN_CMD_TBTT_WAKEUP_START,
95 WLAN_CMD_BECON_SEND_START,
96 WLAN_CMD_CHANGE_ANTENNA_START,
97 WLAN_CMD_REMOVE_ALLKEY_START,
98 WLAN_CMD_MAC_DISPOWERSAVING_START,
99 WLAN_CMD_11H_CHSW_START,
100 WLAN_CMD_CONFIGURE_FILTER_START,
102 } CMD_STATE, *PCMD_STATE;
106 void vResetCommandTimer(struct vnt_private *);
108 int bScheduleCommand(struct vnt_private *, CMD_CODE eCommand, u8 *pbyItem0);
110 void vRunCommand(struct work_struct *work);
112 #endif /* __WCMD_H__ */