summaryrefslogtreecommitdiff
path: root/wilink_6_1/stad/src/Connection_Managment/connApi.h
diff options
context:
space:
mode:
Diffstat (limited to 'wilink_6_1/stad/src/Connection_Managment/connApi.h')
-rw-r--r--wilink_6_1/stad/src/Connection_Managment/connApi.h125
1 files changed, 125 insertions, 0 deletions
diff --git a/wilink_6_1/stad/src/Connection_Managment/connApi.h b/wilink_6_1/stad/src/Connection_Managment/connApi.h
new file mode 100644
index 0000000..03c4ff4
--- /dev/null
+++ b/wilink_6_1/stad/src/Connection_Managment/connApi.h
@@ -0,0 +1,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__ */