xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/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  *  Copyright (C) 2008-2017, Marvell International Ltd.
11  *
12  *  This software file (the "File") is distributed by Marvell International
13  *  Ltd. under the terms of the GNU General Public License Version 2, June 1991
14  *  (the "License").  You may use, redistribute and/or modify this File in
15  *  accordance with the terms and conditions of the License, a copy of which
16  *  is available by writing to the Free Software Foundation, Inc.,
17  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
18  *  worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
19  *
20  *  THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
21  *  IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
22  *  ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
23  *  this warranty disclaimer.
24  */
25 
26 /******************************************************
27 Change log:
28     10/13/2008: initial version
29 ******************************************************/
30 
31 #ifndef _MLAN_JOIN_H_
32 #define _MLAN_JOIN_H_
33 
34 /** Size of buffer allocated to store the association response from firmware */
35 #define MRVDRV_ASSOC_RSP_BUF_SIZE  500
36 
37 /** Size of buffer allocated to store IEs passed to firmware in the assoc req */
38 #define MRVDRV_GENIE_BUF_SIZE      256
39 
40 #endif /* _MLAN_JOIN_H_ */
41