author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 13 Oct 2010 14:20:32 +0300 | |
branch | RCL_3 |
changeset 33 | 2989b291cac7 |
parent 28 | d38647835c2e |
permissions | -rw-r--r-- |
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) |
|
33
2989b291cac7
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
28
diff
changeset
|
34 |
EScpBandwidthLimited, // = ENWNetworkModeGsm |
28 | 35 |
EScpAuthenticationFailed, // = KErrSIPForbidden |
36 |
EScpRoaming, // = MSipProfileAlrObserver::EMigrationStarted |
|
37 |
EScpRegistrationCanceled, // = CSIPProfileRegistry::ErrorOccurred(-3) |
|
33
2989b291cac7
Revision: 201039
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
28
diff
changeset
|
38 |
EScpBearerNotSupported, // = RCSE parameter iAllowVoIPoverWCDMA |
28 | 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 |