wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/inc/wlanmgmtpacket.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 17:02:06 +0300
branchRCL_3
changeset 17 a828660c511c
parent 0 c40eb8fe8501
permissions -rw-r--r--
Revision: 201029 Kit: 201035

/*
* Copyright (c) 2002-2005 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:  Callback interface to pass management packets.
*
*/


#ifndef WLANMGMTPACKET_H
#define WLANMGMTPACKET_H

// CLASS DECLARATION

/**
*  Interface to forward received management packets.
*/
class MWlanMgmtPacket
    {
    public:
        /**
        * Inform about new received management packet.
        * @param aLength Length of the data.
        * @param aData   The data.
        * @return General Symbian error code.
        */
        virtual TInt ReceivePacket( const TUint aLength, const TUint8* const aData )=0;
    };

#endif    // WLANMGMTPACKET_H

//  End of File