aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isup.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-10 23:28:40 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-10 23:28:40 +0000
commit8756dc5fabc73d7bc1eba34b47347fb4d4f326d4 (patch)
tree8c5fd626393ddc1393c7b51cfb4a18636e4d3112 /epan/dissectors/packet-isup.c
parent17d1f0f941e376670c8a84330295704fac537347 (diff)
Define some fcns & vars as static; Some #includes not req'd; packet-mikey.h not req'd.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34464 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-isup.c')
-rw-r--r--epan/dissectors/packet-isup.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c
index f583b695e2..14fb025f4a 100644
--- a/epan/dissectors/packet-isup.c
+++ b/epan/dissectors/packet-isup.c
@@ -42,8 +42,6 @@
# include "config.h"
#endif
-#include <stdlib.h>
-
#include <glib.h>
#include <epan/packet.h>
@@ -741,7 +739,7 @@ const value_string isup_calling_partys_category_value[] = {
#define CVR_RSP_IND_FAILURE 0
#define CVR_RSP_IND_SUCCESS 1
-const value_string isup_cvr_rsp_ind_value[ ] = {
+static const value_string isup_cvr_rsp_ind_value[ ] = {
{ CVR_RSP_IND_FAILURE, "CVR Response Fail" },
{ CVR_RSP_IND_SUCCESS, "CVR Response Success" },
{ 0, NULL }
@@ -752,7 +750,7 @@ const value_string isup_cvr_rsp_ind_value[ ] = {
#define CVR_CG_IND_DOUBLE_SEIZE_EVEN 2
#define CVR_CG_IND_DOUBLE_SEIZE_ALL 3
-const value_string isup_cvr_cg_double_seize_value[ ] = {
+static const value_string isup_cvr_cg_double_seize_value[ ] = {
{ CVR_CG_IND_DOUBLE_SEIZE_NONE, "Double Seize control NONE" },
{ CVR_CG_IND_DOUBLE_SEIZE_ODD, "Double Seize control odd circuits"},
{ CVR_CG_IND_DOUBLE_SEIZE_EVEN, "Double Seize control even circuits"},
@@ -765,7 +763,7 @@ const value_string isup_cvr_cg_double_seize_value[ ] = {
#define CVR_CG_IND_CAR_IND_DIGITAL 2
#define CVR_CG_IND_CAR_IND_ANALOG_DIG 3
-const value_string isup_cvr_cg_car_ind_value[ ] = {
+static const value_string isup_cvr_cg_car_ind_value[ ] = {
{ CVR_CG_IND_CAR_IND_UNKNOWN , "Carrier Type Unknown" },
{ CVR_CG_IND_CAR_IND_ANALOG , "Carrier Type Analog" },
{ CVR_CG_IND_CAR_IND_DIGITAL , "Carrier Type Digital"},
@@ -778,7 +776,7 @@ const value_string isup_cvr_cg_car_ind_value[ ] = {
#define CVR_CG_IND_ALARM_CAR_IND_HARDWARE 2
#define CVR_CG_IND_ALARM_CAR_IND_SPARE 3
-const value_string isup_cvr_alarm_car_ind_value[ ] = {
+static const value_string isup_cvr_alarm_car_ind_value[ ] = {
{ CVR_CG_IND_ALARM_CAR_IND_UNKNOWN , "Alarm Carrier Ind Default"},
{ CVR_CG_IND_ALARM_CAR_IND_SOFTWARE , "Alarm Carrier Ind Software"},
{ CVR_CG_IND_ALARM_CAR_IND_HARDWARE , "Alarm Carrier Ind Hardware"},
@@ -791,7 +789,7 @@ const value_string isup_cvr_alarm_car_ind_value[ ] = {
#define CVR_CG_IND_CONT_CHK_STAT 2
#define CVR_CG_IND_CONT_CHK_PER_CALL 3
-const value_string isup_cvr_cont_chk_ind_value[ ] = {
+static const value_string isup_cvr_cont_chk_ind_value[ ] = {
{ CVR_CG_IND_CONT_CHK_UNKNOWN , "Continuity Check Unknown"},
{ CVR_CG_IND_CONT_CHK_NONE , "Continuity Check NONE"},
@@ -1784,9 +1782,9 @@ isup_apm_defragment_init(void)
}
/* Info for the tap that must be passed between procedures */
-gchar *tap_called_number = NULL;
-gchar *tap_calling_number = NULL;
-guint8 tap_cause_value = 0;
+static gchar *tap_called_number = NULL;
+static gchar *tap_calling_number = NULL;
+static guint8 tap_cause_value = 0;
/* ------------------------------------------------------------------
Mapping number to ASCII-character
@@ -5188,7 +5186,7 @@ dissect_isup_generic_digits_parameter(tvbuff_t *parameter_tvb, proto_tree *param
/* ------------------------------------------------------------------
Dissector Parameter Charge number
*/
-void
+static void
dissect_isup_charge_number_parameter(tvbuff_t *parameter_tvb, proto_tree *parameter_tree, proto_item *parameter_item)
{
proto_item *address_digits_item;