eapol/eapol_framework/eapol_symbian/eap_if/include/EapCoreInterface.h
branchRCL_3
changeset 18 bad0cc58d154
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eapol/eapol_framework/eapol_symbian/eap_if/include/EapCoreInterface.h	Tue Aug 31 15:16:37 2010 +0300
@@ -0,0 +1,93 @@
+/*
+* Copyright (c) 2001-2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  EAP and WLAN authentication protocols.
+*
+*/
+
+/*
+* %version: 9 %
+*/
+
+#ifndef EAPCOREINTERFACE_H_
+#define EAPCOREINTERFACE_H_
+
+
+#include "abs_eap_am_message_if.h"
+#include "eap_am_message_if.h"
+#include "EapSendInterface.h"
+#include "EapProcessInterface.h"
+#include "EapServerClientDef.h"
+
+class CEapCoreInterface : 
+    public CBase,
+    public MEapSendInterface,
+    public eap_am_message_if_c
+
+    {
+public:
+    /**
+     * Two-phased constructor.
+     */
+    CEapCoreInterface(const u32_t MTU);
+    
+    /**
+     * Destructor.
+     */
+    virtual ~CEapCoreInterface();
+
+public: // New functions
+    
+    /**
+     * From eap_am_message_if_c 
+     * Initialize interface to EAPOL or WAPI.
+     * @since S60 v9.2
+     */
+
+    EAP_FUNC_IMPORT bool get_is_valid();
+ 
+    /// Function receives the data message from lower layer.
+    /// Data is formatted to Attribute-Value Pairs.
+    /// Look at eap_tlv_header_c and eap_tlv_message_data_c.
+    EAP_FUNC_IMPORT eap_status_e process_data(const void * const data, const u32_t length);
+
+    // This is documented in abs_eap_stack_interface_c::configure().
+    EAP_FUNC_IMPORT eap_status_e configure(
+		const eap_variable_data_c * const client_configuration);
+
+    // This is documented in abs_eap_stack_interface_c::shutdown().
+    EAP_FUNC_IMPORT eap_status_e shutdown();
+
+    EAP_FUNC_IMPORT void set_partner(abs_eap_am_message_if_c * const client);
+    
+    /**
+  * from MEapSendInterface 
+     */
+    EAP_FUNC_IMPORT TInt SendData(
+        const void * const aData, 
+        const TInt aLength );
+
+    EAP_FUNC_IMPORT CEapProcessInterface* ConstrucL(abs_eap_am_tools_c * const tools );
+
+private:
+    
+    
+    abs_eap_am_message_if_c* iClient;
+    TBool iIsValid;
+    abs_eap_am_tools_c* iTools;
+    CEapCoreInterface* iEapCoreInterface;
+    CEapProcessInterface* iServer;
+    TUint32 iMTU;
+    };
+
+#endif /* EAPCOREINTERFACE_H_ */