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 2008-2024 NXP 11 * 12 * SPDX-License-Identifier: BSD-3-Clause 13 * 14 */ 15 16 /****************************************************** 17 Change log: 18 10/13/2008: initial version 19 ******************************************************/ 20 21 #ifndef _MLAN_JOIN_H_ 22 #define _MLAN_JOIN_H_ 23 24 /** Size of buffer allocated to store the association response from firmware */ 25 #define MRVDRV_ASSOC_RSP_BUF_SIZE 500 26 27 /** Size of buffer allocated to store IEs passed to firmware in the assoc req */ 28 #define MRVDRV_GENIE_BUF_SIZE 256 29 30 #endif /* _MLAN_JOIN_H_ */ 31