aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2009-06-02 15:34:17 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2009-06-02 15:34:17 +0000
commit0bc4c14a35ec25f1de373719188e62538576c2ff (patch)
treed683e48ef477775663d26843419e8375c9ed6636 /epan/dissectors/packet-sccp.c
parente9184a4035de640bf979bbec42b21160a0df8c14 (diff)
Decode SCCP cause values in SUA (using value_strings exported from the SCCP
dissector). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28599 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sccp.c')
-rw-r--r--epan/dissectors/packet-sccp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-sccp.c b/epan/dissectors/packet-sccp.c
index 5cb07f9315..d0a4511e1a 100644
--- a/epan/dissectors/packet-sccp.c
+++ b/epan/dissectors/packet-sccp.c
@@ -426,7 +426,7 @@ static const value_string sccp_segmenting_reassembling_values [] = {
#define CREDIT_LENGTH 1
#define RELEASE_CAUSE_LENGTH 1
-static const value_string sccp_release_cause_values [] = {
+const value_string sccp_release_cause_values [] = {
{ 0x00, "End user originated" },
{ 0x01, "End user congestion" },
{ 0x02, "End user failure" },
@@ -448,7 +448,7 @@ static const value_string sccp_release_cause_values [] = {
#define RETURN_CAUSE_LENGTH 1
-static const value_string sccp_return_cause_values [] = {
+const value_string sccp_return_cause_values [] = {
{ 0x00, "No translation for an address of such nature" },
{ 0x01, "No translation for this specific address" },
{ 0x02, "Subsystem congestion" },
@@ -476,7 +476,7 @@ static const value_string sccp_return_cause_values [] = {
#define RESET_CAUSE_LENGTH 1
-static const value_string sccp_reset_cause_values [] = {
+const value_string sccp_reset_cause_values [] = {
{ 0x00, "End user originated" },
{ 0x01, "SCCP user originated" },
{ 0x02, "Message out of order - incorrect send sequence number" },
@@ -494,7 +494,7 @@ static const value_string sccp_reset_cause_values [] = {
#define ERROR_CAUSE_LENGTH 1
-static const value_string sccp_error_cause_values [] = {
+const value_string sccp_error_cause_values [] = {
{ 0x00, "Local Reference Number (LRN) mismatch - unassigned destination LRN" },
{ 0x01, "Local Reference Number (LRN) mismatch - inconsistent source LRN" },
{ 0x02, "Point code mismatch" },
@@ -504,7 +504,7 @@ static const value_string sccp_error_cause_values [] = {
#define REFUSAL_CAUSE_LENGTH 1
-static const value_string sccp_refusal_cause_values [] = {
+const value_string sccp_refusal_cause_values [] = {
{ 0x00, "End user originated" },
{ 0x01, "End user congestion" },
{ 0x02, "End user failure" },