xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/mlan_join.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /** @file mlan_join.h
2  *
3  *  @brief This file defines the interface for the WLAN infrastructure
4  *  and adhoc join routines.
5  *
6  *  Driver interface functions and type declarations for the join module
7  *  implemented in mlan_join.c.  Process all start/join requests for
8  *  both adhoc and infrastructure networks
9  *
10  *
11  *  Copyright 2008-2021 NXP
12  *
13  *  This software file (the File) is distributed by NXP
14  *  under the terms of the GNU General Public License Version 2, June 1991
15  *  (the License).  You may use, redistribute and/or modify the File in
16  *  accordance with the terms and conditions of the License, a copy of which
17  *  is available by writing to the Free Software Foundation, Inc.,
18  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
19  *  worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
20  *
21  *  THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
22  *  IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
23  *  ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
24  *  this warranty disclaimer.
25  *
26  */
27 
28 /******************************************************
29 Change log:
30     10/13/2008: initial version
31 ******************************************************/
32 
33 #ifndef _MLAN_JOIN_H_
34 #define _MLAN_JOIN_H_
35 
36 /** Size of buffer allocated to store the association response from firmware */
37 #define MRVDRV_ASSOC_RSP_BUF_SIZE 500
38 
39 /** Size of buffer allocated to store IEs passed to firmware in the assoc req */
40 #define MRVDRV_GENIE_BUF_SIZE 256
41 
42 #endif /* _MLAN_JOIN_H_ */
43