|
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 EScpBandwidthLimited, // = ENWNetworkModeGsm |
|
35 EScpAuthenticationFailed, // = KErrSIPForbidden |
|
36 EScpRoaming, // = MSipProfileAlrObserver::EMigrationStarted |
|
37 EScpRegistrationCanceled, // = CSIPProfileRegistry::ErrorOccurred(-3) |
|
38 EScpBearerNotSupported, // = RCSE parameter iAllowVoIPoverWCDMA |
|
39 EScpRegistrationPending // = XIMP Bind / VMBX Subscribe(-11) |
|
40 }; |
|
41 |
|
42 enum TScpIapType |
|
43 { |
|
44 EScpUnknownType = 0, |
|
45 EScpGprs, |
|
46 EScpWlan |
|
47 }; |
|
48 |
|
49 enum TScpAccessPointType |
|
50 { |
|
51 EScpUnknownAccessPointType = 0, |
|
52 EScpIap, |
|
53 EScpSnap |
|
54 }; |
|
55 |
|
56 #endif // T_SCPDEFS_H |