summaryrefslogtreecommitdiff
path: root/wl1271/stad/src/Connection_Managment/connApi.h
blob: 03c4ff418f21970f4292ed8e87aa81e53ee8b521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * connApi.h
 *
 * Copyright(c) 1998 - 2009 Texas Instruments. All rights reserved.      
 * All rights reserved.                                                  
 *                                                                       
 * Redistribution and use in source and binary forms, with or without    
 * modification, are permitted provided that the following conditions    
 * are met:                                                              
 *                                                                       
 *  * Redistributions of source code must retain the above copyright     
 *    notice, this list of conditions and the following disclaimer.      
 *  * Redistributions in binary form must reproduce the above copyright  
 *    notice, this list of conditions and the following disclaimer in    
 *    the documentation and/or other materials provided with the         
 *    distribution.                                                      
 *  * Neither the name Texas Instruments nor the names of its            
 *    contributors may be used to endorse or promote products derived    
 *    from this software without specific prior written permission.      
 *                                                                       
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS   
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT     
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT  
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT      
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT   
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/** \file connApi.h
 *  \brief connection module API
 *
 *  \see conn.c
 */

/***************************************************************************/
/*																									*/
/*	  MODULE:	connApi.h																*/
/*    PURPOSE:	connection module API			 								*/
/*																									*/
/***************************************************************************/
#ifndef __CONN_API_H__
#define __CONN_API_H__

#include "tidef.h"
#include "paramOut.h"
#include "802_11Defs.h"
#include "mlmeApi.h"
#include "DrvMainModules.h"

/*
 * Connection type enum
 */
typedef enum
{
	CONN_TYPE_FIRST_CONN = 0,  /* Standart 802.11 association */
	CONN_TYPE_ROAM             /* Perform roaming connection. (Re Association) */ 

} EConnType;


typedef enum
{
    CONN_TYPE_PARAM         = 0x01

} EConnParam;


/* 
	Prototype for connection status announcment, this function is called upon connection
   lost or connection establishment.
*/
typedef void (*conn_status_callback_t)( TI_HANDLE hObj, mgmtStatus_e status, TI_UINT32 uStatusCode);

/* Connection interface functions prototypes */

TI_HANDLE conn_create (TI_HANDLE hOs);

void      conn_init (TStadHandlesList *pStadHandles);

TI_STATUS conn_SetDefaults (TI_HANDLE hConn, connInitParams_t *pConnInitParams);

TI_STATUS conn_unLoad (TI_HANDLE hConn);

TI_STATUS conn_setParam (TI_HANDLE hConn, paramInfo_t *pParam);

TI_STATUS conn_getParam (TI_HANDLE hConn, paramInfo_t *pParam);

TI_STATUS conn_start(TI_HANDLE hConn, 
                     EConnType connType,
                     conn_status_callback_t  pConnStatusCB,
                     TI_HANDLE connStatCbObj,
                     TI_BOOL disConEraseKeys,
                     TI_BOOL reNegotiateTspec);

void connInfraJoinCmdCmpltNotification(TI_HANDLE CB_handle);

TI_STATUS conn_stop (TI_HANDLE               hConn, 
                     DisconnectType_e       disConnType,
				     mgmtStatus_e 			reason,
				     TI_BOOL					disConEraseKeys,
				     conn_status_callback_t  pConnStatusCB,
				     TI_HANDLE				connStatCbObj );

void conn_timeout (TI_HANDLE hConn, TI_BOOL bTwdInitOccured);

TI_STATUS conn_ibssStaJoined (TI_HANDLE hConn);
TI_STATUS conn_ibssMerge (TI_HANDLE hConn);

TI_STATUS conn_reportMlmeStatus(TI_HANDLE			hConn,
							mgmtStatus_e		status,
							TI_UINT16				uStatusCode);

TI_STATUS conn_reportRsnStatus(TI_HANDLE			hConn,
							mgmtStatus_e		status);

#ifdef REPORT_LOG
void conn_ibssPrintStatistics (TI_HANDLE hConn);
#endif /*TI_DBG*/

#endif /* __CONN_API_H__ */