Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-diameter_3gpp.h
1 /* packet-diameter_3gpp.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 static const value_string diameter_3gpp_IKEv2_error_type_vals[] = {
11  { 1, "UNSUPPORTED_CRITICAL_PAYLOAD" },
12  { 4, "INVALID_IKE_SPI" },
13  { 5, "INVALID_MAJOR_VERSION" },
14  { 7, "INVALID_SYNTAX" },
15  { 9, "INVALID_MESSAGE_ID" },
16  { 11, "INVALID_SPI" },
17  { 14, "NO_PROPOSAL_CHOSEN" },
18  { 17, "INVALID_IKE_PAYLOAD" },
19  { 24, "AUTHENTICATION_FAILED" },
20  { 34, "SINGLE_PAIR_REQUIRED" },
21  { 35, "NO_ADDITIONAL_SAS" },
22  { 36, "INTERNAL_ADDRESS_FAILURE" },
23  { 37, "FAILED_CP_REQUIRED" },
24  { 38, "TS_UNACCEPTABLE" },
25  { 39, "INVALID_SELECTORS" },
26  { 40, "UNACCEPTABLE_ADDRESSES" },
27  { 41, "UNEXPECTED_NAT_DETECTED" },
28  { 42, "USE_ASSIGNED_HoA" },
29  { 43, "TEMPORARY_FAILURE" },
30  { 44, "CHILD_SA_NOT_FOUND" },
31  { 45, "INVALID_GROUP_ID" },
32  { 46, "AUTHORIZATION_FAILED" },
33  { 0, NULL }
34 };
35 
36 static const value_string diameter_3gpp_termination_cause_vals[] = {
37  { 1, "DIAMETER_LOGOUT" },
38  { 2, "DIAMETER_SERVICE_NOT_PROVIDED" },
39  { 3, "DIAMETER_BAD_ANSWER" },
40  { 4, "DIAMETER_ADMINISTRATIVE" },
41  { 5, "DIAMETER_LINK_BROKEN" },
42  { 6, "DIAMETER_AUTH_EXPIRED" },
43  { 7, "DIAMETER_USER_MOVED" },
44  { 8, "DIAMETER_SESSION_TIMEOUT" },
45  { 9, "Unassigned" },
46  { 10, "Unassigned" },
47  { 11, "User Request" },
48  { 12, "Lost Carrier" },
49  { 13, "Lost Service" },
50  { 14, "Idle Timeout" },
51  { 15, "Session Timeout" },
52  { 16, "Admin Reset" },
53  { 17, "Admin Reboot" },
54  { 18, "Port Error" },
55  { 19, "NAS Error" },
56  { 20, "NAS Request" },
57  { 21, "NAS Reboot" },
58  { 22, "Port Unneeded" },
59  { 23, "Port Preempted" },
60  { 24, "Port Suspended" },
61  { 25, "Service Unavailable" },
62  { 26, "Callback" },
63  { 27, "User Error" },
64  { 28, "Host Request" },
65  { 29, "Supplicant Restart" },
66  { 30, "Reauthentication Failure" },
67  { 31, "Port Reinitialized" },
68  { 32, "Port Administratively Disabled" },
69  { 0, NULL }
70 };
71 
72 int dissect_diameter_3gpp_core_network_restrictions(tvbuff_t* tvb, packet_info* pinfo _U_, proto_tree* tree, void* data);
73 
74 /*
75  * Editor modelines
76  *
77  * Local Variables:
78  * c-basic-offset: 4
79  * tab-width: 8
80  * indent-tabs-mode: nil
81  * End:
82  *
83  * ex: set shiftwidth=4 tabstop=8 expandtab:
84  * :indentSize=4:tabSize=8:noTabs=true:
85  */
Definition: packet_info.h:44
Definition: proto.h:904
Definition: value_string.h:26
Definition: tvbuff-int.h:35