equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 |
|
18 /** |
|
19 @internalComponent |
|
20 */ |
|
21 |
|
22 #ifndef __QOSERR_H__ |
|
23 #define __QOSERR_H__ |
|
24 |
|
25 /** |
|
26 * @internalTechnology |
|
27 */ |
|
28 |
|
29 enum TQoSReasonCode |
|
30 { |
|
31 EQoSOk, |
|
32 EQoSPolicyExists = -5119, //< -5119 Policy exists in database |
|
33 EQoSNoModules, //< -5118 No QoS modules available |
|
34 EQoSInterface, //< -5117 Flows are using different interfaces |
|
35 EQoSModules, //< -5116 Flows use different QoS modules |
|
36 EQoSModuleLoadFailed, //< -5115 Loading of QoS module failed |
|
37 EQoSMessageCorrupt, //< -5114 Pfqos message corrupted |
|
38 EQoSJoinFailure, //< -5113 Join to QoS channel failed |
|
39 EQoSLeaveFailure, //< -5112 Leave from QoS channel failed |
|
40 EQoSNoInterface, //< -5111 Network interface deleted |
|
41 EQoSChannelDeleted, //< -5110 QoS channel deleted |
|
42 EQoSDowngradeForced //< -5109 QoS parameters downgraded by administrative policy |
|
43 }; |
|
44 |
|
45 #endif |