|
1 // Copyright (c) 2007-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 #ifndef __GUQOS_ERR_H__ |
|
17 #define __GUQOS_ERR_H__ |
|
18 |
|
19 /* |
|
20 * PCO Error codes: |
|
21 * In all the cases listed below a common GTP cause code, |
|
22 * "User authentication failed", see 3GPP TS 29 060 [20], |
|
23 * shall be used in the response message. |
|
24 */ |
|
25 enum TGuQoSReasonCode |
|
26 { |
|
27 /* |
|
28 * Error code No. 1 "Authorization failure of the request" |
|
29 * This error code indicates that the secondary PDP context request is |
|
30 * rejected because the authorizing entity is unable to provide an |
|
31 * authorization decision for the binding information. |
|
32 */ |
|
33 EGuqosSblpAuthorizationFailureOfRequest = -3062, |
|
34 |
|
35 /* |
|
36 * Error code No. 2 "Missing binding information" |
|
37 * This error code indicates that the secondary PDP context activation or PDP |
|
38 * context modification request is rejected because the binding information |
|
39 * was not included in the request although required. |
|
40 */ |
|
41 EGuqosSblpMissingBindingInfo = -3061, |
|
42 |
|
43 /* |
|
44 * Error code No. 3 "Invalid binding information" |
|
45 * This error code indicates that the secondary PDP context activation or PDP |
|
46 * context modification request is rejected because the authorizing entity |
|
47 * could not be resolved from the binding information. |
|
48 */ |
|
49 EGuqosSblpInvalidBindingInfo = -3060, |
|
50 |
|
51 /* |
|
52 * Error code No. 4 "Binding information not allowed" |
|
53 * This error code indicates that the secondary PDP context activation or PDP |
|
54 * context modification request is rejected because the Go interface is |
|
55 * disabled or not supported in the GGSN and hence binding information is not |
|
56 * allowed. The error code may also indicate that the PDP context modification |
|
57 * is rejected because binding information is not allowed for modification of |
|
58 * previously non-authorised PDP context or that the binding information is |
|
59 * not allowed when the PDP context is indicated to be used for IMS signaling. |
|
60 */ |
|
61 EGuqosSblpBindingInfoNotAllowed = -3059, |
|
62 |
|
63 /* |
|
64 * Error code No.5 "Authorizing entity temporarily unavailable" |
|
65 * This error code indicates that the secondary PDP context activation or PDP |
|
66 * context modification request is rejected because the authorizing entity |
|
67 * indicated by the binding information is temporarily unavailable. |
|
68 */ |
|
69 EGuqosSblpAuthorizingEntityTemporarilyUnavailable = -3058, |
|
70 |
|
71 /* |
|
72 * Error code No. 6 "No corresponding session" |
|
73 * This error code indicates that the secondary PDP context activation request is rejected because the authorizing entity |
|
74 * cannot associate the Authorisation token of binding information with any ongoing session or binding information |
|
75 * contains invalid flow identifier(s).The error code also indicates that the PDP context modification request is rejected by |
|
76 * the authorizing entity because the authorization token has changed or the binding information contains invalid flow |
|
77 * identifier(s). |
|
78 */ |
|
79 EGuqosSblpNoCorrespondingSession = -3057, |
|
80 |
|
81 /* |
|
82 * Error code No. 7 "Invalid bundling" |
|
83 * This error code indicates that the secondary PDP context activation or PDP context modification request is rejected |
|
84 * because the authorizing entity does not allow the grouping of the flow identifiers in the same PDP Context. |
|
85 */ |
|
86 EGuqosSblpInvalidBundling = -3056 |
|
87 }; |
|
88 #endif // __GUQOS_ERR_H__ |