28
|
1 |
/*
|
|
2 |
* Copyright (c) 2007 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 "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:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef T_SCPDEFS_H
|
|
20 |
#define T_SCPDEFS_H
|
|
21 |
|
|
22 |
#include <e32std.h>
|
|
23 |
|
|
24 |
enum TScpConnectionEvent
|
|
25 |
{
|
|
26 |
EScpUnknown = 0,
|
|
27 |
EScpNetworkFound, // = CSIPConnection::ConnectionEvent(EActive)
|
|
28 |
EScpNetworkLost, // = CSIPConnection::ConnectionEvent(EInactive)
|
|
29 |
EScpNetworkNotFound, // = CSIPConnection::ConnectionEvent(EUnavailable)
|
|
30 |
EScpRegistered, // = CSIPProfileRegistry::EventOccurred(ERegistered)
|
|
31 |
EScpDeregistered, // = CSIPProfileRegistry::EventOccurred(EDeregistered)
|
|
32 |
EScpRegistrationFailed, // = CSIPProfileRegistry::ErrorOccurred(-34)
|
|
33 |
EScpInvalidSettings, // = CSIPProfileRegistry::ErrorOccurred(-6)
|
|
34 |
EScpAuthenticationFailed, // = KErrSIPForbidden
|
|
35 |
EScpRoaming, // = MSipProfileAlrObserver::EMigrationStarted
|
|
36 |
EScpRegistrationCanceled, // = CSIPProfileRegistry::ErrorOccurred(-3)
|
|
37 |
EScpRegistrationPending // = XIMP Bind / VMBX Subscribe(-11)
|
|
38 |
};
|
|
39 |
|
|
40 |
enum TScpIapType
|
|
41 |
{
|
|
42 |
EScpUnknownType = 0,
|
|
43 |
EScpGprs,
|
|
44 |
EScpWlan
|
|
45 |
};
|
|
46 |
|
|
47 |
enum TScpAccessPointType
|
|
48 |
{
|
|
49 |
EScpUnknownAccessPointType = 0,
|
|
50 |
EScpIap,
|
|
51 |
EScpSnap
|
|
52 |
};
|
|
53 |
|
|
54 |
#endif // T_SCPDEFS_H
|