19
|
1 |
/*
|
|
2 |
* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: EAP and WLAN authentication protocols.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
/*
|
|
19 |
* %version: 7.1.2 %
|
|
20 |
*/
|
|
21 |
|
|
22 |
#ifndef EAPFASTNOTIFIERSTRUCT_H
|
|
23 |
#define EAPFASTNOTIFIERSTRUCT_H
|
|
24 |
|
|
25 |
const TUid KEapFastNotifierUid = {0x2000F8DF};
|
|
26 |
|
|
27 |
const TUint KMaxEapFastNotifierBufLength = 255;
|
|
28 |
|
|
29 |
enum EEapFastNotifierUiItem
|
|
30 |
{
|
|
31 |
EEapFastNotifierPacStorePwQuery, /* 0 */
|
|
32 |
EEapFastNotifierWrongPacStorePwNote, /* 1 */
|
|
33 |
EEapFastNotifierAuthProvWaitNote, /* 2 */
|
|
34 |
EEapFastNotifierAuthProvWaitNoteEnd, /* 3 */
|
|
35 |
EEapFastNotifierUnauthProvWaitNote, /* 4 */
|
|
36 |
EEapFastNotifierUnauthProvWaitNoteEnd, /* 5 */
|
|
37 |
EEapFastNotifierInstallPacConfirmQuery, /* 6 */
|
|
38 |
EEapFastNotifierProvSuccessNote, /* 7 */
|
|
39 |
EEapFastNotifierProvNotSuccessNote, /* 8 */
|
|
40 |
EEapFastNotifierPacFilePwQuery, /* 9 */
|
|
41 |
EEapFastNotifierWrongPacFilePwNote, /* 10 */
|
|
42 |
EEapFastNotifierCreateMasterkeyQuery, /* 11 */
|
|
43 |
EEapFastNotifierUiItemsNumber /* 12 */ // keep always as last element
|
|
44 |
};
|
|
45 |
|
|
46 |
enum EEapFastNotifierUserAction
|
|
47 |
{
|
|
48 |
EEapFastNotifierUserActionOk,
|
|
49 |
EEapFastNotifierUserActionCancel
|
|
50 |
};
|
|
51 |
|
|
52 |
struct TEapFastNotifierStruct
|
|
53 |
{
|
|
54 |
EEapFastNotifierUiItem iEapFastNotifierUiItem;
|
|
55 |
TBuf<KMaxEapFastNotifierBufLength> iEapFastNotifierBuffer;
|
|
56 |
EEapFastNotifierUserAction iEapFastNotifierUserAction;
|
|
57 |
};
|
|
58 |
|
|
59 |
#endif // EAPFASTNOTIFIERSTRUCT_H
|
|
60 |
|
|
61 |
// End of File
|