Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wcmd.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3  * All rights reserved.
4  *
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.
9  *
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.
14  *
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.
18  *
19  * File: wcmd.h
20  *
21  * Purpose: Handles the management command interface functions
22  *
23  * Author: Lyndon Chen
24  *
25  * Date: May 8, 2002
26  *
27  */
28 
29 #ifndef __WCMD_H__
30 #define __WCMD_H__
31 
32 #include "ttype.h"
33 #include "80211hdr.h"
34 #include "80211mgr.h"
35 
36 /*--------------------- Export Definitions -------------------------*/
37 
38 
39 
40 #define AUTHENTICATE_TIMEOUT 1000 //ms
41 #define ASSOCIATE_TIMEOUT 1000 //ms
42 
43 
44 // Command code
45 typedef enum tagCMD_CODE {
62 
63 #define CMD_Q_SIZE 32
64 
65 typedef enum tagCMD_STATUS {
66 
72 
74 
75 
76 typedef struct tagCMD_ITEM {
80  unsigned short wDeAuthenReason;
81  bool bRadioCmd;
82  bool bForceSCAN;
84 
85 // Command state
86 typedef enum tagCMD_STATE {
100 
101 
102 
103 /*--------------------- Export Classes ----------------------------*/
104 
105 /*--------------------- Export Variables --------------------------*/
106 
107 
108 /*--------------------- Export Types ------------------------------*/
109 
110 
111 /*--------------------- Export Functions --------------------------*/
112 void
114  void *hDeviceContext
115  );
116 
117 void
119  void *hDeviceContext
120  );
121 
122 bool bClearBSSID_SCAN(
123  void *hDeviceContext
124  );
125 
126 bool
128  void *hDeviceContext,
129  CMD_CODE eCommand,
130  unsigned char *pbyItem0
131  );
132 
133 void
135  void *hDeviceContext,
136  unsigned int MSecond
137  );
138 #ifdef TxInSleep
139 void
141  void *hDeviceContext
142  );
143 #endif
144 
145 #endif //__WCMD_H__