summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
commitc4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch)
tree93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-sip.h
parentAdding upstream version 4.2.6. (diff)
downloadwireshark-upstream.tar.xz
wireshark-upstream.zip
Adding upstream version 4.4.0.upstream/4.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-sip.h')
-rw-r--r--epan/dissectors/packet-sip.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/epan/dissectors/packet-sip.h b/epan/dissectors/packet-sip.h
index 32000888..f975f0c8 100644
--- a/epan/dissectors/packet-sip.h
+++ b/epan/dissectors/packet-sip.h
@@ -14,16 +14,16 @@
typedef struct _sip_info_value_t
{
- const guint8 *request_method;
- guint response_code;
- gboolean resend;
- guint32 setup_time;
+ const uint8_t *request_method;
+ unsigned response_code;
+ bool resend;
+ uint32_t 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;
+ char *tap_call_id;
+ char *tap_from_addr;
+ char *tap_to_addr;
+ uint32_t tap_cseq_number;
+ char *reason_phrase;
} sip_info_value_t;
typedef enum {
@@ -35,14 +35,14 @@ typedef enum {
typedef struct _sip_reason_code_info_t
{
sip_reason_code_proto_t protocol_type_num;
- guint cause_value;
+ unsigned cause_value;
} sip_reason_code_info_t;
WS_DLL_PUBLIC const value_string sip_response_code_vals[];
extern void dfilter_store_sip_from_addr(tvbuff_t *tvb, proto_tree *tree,
- guint parameter_offset, guint parameter_len);
+ unsigned parameter_offset, unsigned parameter_len);
-extern void dissect_sip_p_access_network_info_header(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint start_offset, gint line_end_offset);
+extern void dissect_sip_p_access_network_info_header(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int start_offset, int line_end_offset);
#endif