aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@zing.org>2015-10-24 17:45:51 -0700
committerGerald Combs <gerald@wireshark.org>2015-10-27 15:21:12 +0000
commit08e44b8b43ad4234a93b8feaa8e8174373188080 (patch)
treef777056da4035b7b3c4ab78a2ab5eba64e467984 /epan/dissectors/packet-sip.h
parent616dbd78d6afc4f8825ce159de23b19752859605 (diff)
Convert SIP statistics to the stat tap API.
It looks like this one fell through the cracks because it dynamically registered itself via register_tap_listener_gtksipstat and wasn't listed in the "/Telephony/" path in main_menubar.c. Ping-Bug: 11638 Change-Id: I4c82b36d204207c81e82a19efce98b6a091351ca Reviewed-on: https://code.wireshark.org/review/11293 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/dissectors/packet-sip.h')
-rw-r--r--epan/dissectors/packet-sip.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/epan/dissectors/packet-sip.h b/epan/dissectors/packet-sip.h
index 41177b3a09..11d4c8e149 100644
--- a/epan/dissectors/packet-sip.h
+++ b/epan/dissectors/packet-sip.h
@@ -26,19 +26,19 @@
typedef struct _sip_info_value_t
{
- gchar *request_method;
- guint response_code;
- guchar resend;
- guint32 setup_time;
+ gchar *request_method;
+ guint response_code;
+ gboolean resend;
+ guint32 setup_time;
/* added for VoIP calls analysis, see ui/voip_calls.c*/
- gchar *tap_call_id;
- gchar *tap_from_addr;
- gchar *tap_to_addr;
- guint32 tap_cseq_number;
- gchar *reason_phrase;
+ gchar *tap_call_id;
+ gchar *tap_from_addr;
+ gchar *tap_to_addr;
+ guint32 tap_cseq_number;
+ gchar *reason_phrase;
} sip_info_value_t;
-extern void dfilter_store_sip_from_addr(tvbuff_t *tvb,proto_tree *tree,guint parameter_offset,
- guint parameter_len);
+extern void dfilter_store_sip_from_addr(tvbuff_t *tvb, proto_tree *tree,
+ guint parameter_offset, guint parameter_len);
#endif