williamr@2: // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@2: // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members williamr@2: // which accompanies this distribution, and is available williamr@2: // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // williamr@2: williamr@2: #ifndef BTSECMANCLIENT_H williamr@2: #define BTSECMANCLIENT_H williamr@2: williamr@2: #include williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Struct used to transfer BT address to host resolver to indicate notification of event williamr@2: **/ williamr@2: NONSHARABLE_CLASS(TBTHostResolverNotification) williamr@2: { williamr@2: public: williamr@2: TBTDevAddr iBDAddr; williamr@2: TInt iNotification; williamr@2: }; williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Struct used to transfer device information to host resolver. williamr@2: **/ williamr@2: NONSHARABLE_CLASS(TBTHostResolverDeviceInfo) williamr@2: { williamr@2: public: williamr@2: TBTDevAddr iBDAddr; williamr@2: TUint8 iPageScanRepMode; /*!< Page Scan repetition mode of remote device*/ williamr@2: TUint8 iPageScanMode; /*!< Page scan mode of remote device*/ williamr@2: TUint16 iClockOffSet; /*!< clock off set of remote device*/ williamr@2: }; williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Struct used to transfer new Juice information from host resolver client to server. williamr@2: Juice information contains data pertaining to williamr@2: **/ williamr@2: NONSHARABLE_CLASS(TBTHostResolverNewJuice) williamr@2: { williamr@2: public: williamr@2: TBTDevAddr iBDAddr; williamr@2: TUint32 iPageScanRepMode; ///< Page Scan repetition mode of remote device williamr@2: TUint32 iPageScanMode; ///< Page scan mode of remote device williamr@2: TUint32 iClockOffSet; ///< clock off set of remote device williamr@2: }; williamr@2: williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Struct used to transfer new link key event params from client to server. williamr@2: **/ williamr@2: NONSHARABLE_CLASS(TBTSecManNewLinkKeyParams) williamr@2: { williamr@2: public: williamr@2: TBTDevAddr iBDAddr; williamr@2: TBTLinkKey iLinkKey; williamr@2: }; williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Typedef'ed pckgbuf to send a TBTSecManNewLinkKeyParams object over IPC. williamr@2: */ williamr@2: typedef TPckgBuf TBTSecManNewLinkKeyParamsPckg; williamr@2: williamr@2: /** williamr@2: @internalAll williamr@2: @released williamr@2: Typedef'ed pckgbuf to send a TBTHostResolverNotification object over IPC. williamr@2: */ williamr@2: typedef TPckgBuf TBTHostResolverNotificationPckg; williamr@2: williamr@2: williamr@2: #endif