summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-msn-messenger.c
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-msn-messenger.c
parentAdding upstream version 4.2.6. (diff)
downloadwireshark-c4e8a3222648fcf22ca207f1815ebbf7cd144eeb.tar.xz
wireshark-c4e8a3222648fcf22ca207f1815ebbf7cd144eeb.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-msn-messenger.c')
-rw-r--r--epan/dissectors/packet-msn-messenger.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-msn-messenger.c b/epan/dissectors/packet-msn-messenger.c
index 1f45efe7..e4024261 100644
--- a/epan/dissectors/packet-msn-messenger.c
+++ b/epan/dissectors/packet-msn-messenger.c
@@ -42,10 +42,10 @@ static dissector_handle_t msnms_handle;
* this should be done.
*/
-static int proto_msnms = -1;
-/* static int hf_msnms_command = -1; */
+static int proto_msnms;
+/* static int hf_msnms_command; */
-static gint ett_msnms = -1;
+static int ett_msnms;
#define TCP_PORT_MSNMS 1863
@@ -54,12 +54,12 @@ dissect_msnms(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
{
proto_tree *msnms_tree;
proto_item *ti;
- gint offset = 0;
- const guchar *line;
- gint next_offset;
+ int offset = 0;
+ const unsigned char *line;
+ int next_offset;
int linelen;
/* int tokenlen; */
- /* const guchar *next_token; */
+ /* const unsigned char *next_token; */
col_set_str(pinfo->cinfo, COL_PROTOCOL, "MSNMS");
@@ -70,7 +70,7 @@ dissect_msnms(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
* not longer than what's in the buffer, so the "tvb_get_ptr()"
* call won't throw an exception.
*/
- linelen = tvb_find_line_end(tvb, offset, -1, &next_offset, FALSE);
+ linelen = tvb_find_line_end(tvb, offset, -1, &next_offset, false);
line = tvb_get_ptr(tvb, offset, linelen);
@@ -94,7 +94,7 @@ dissect_msnms(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
* Find the end of the line.
*/
tvb_find_line_end(tvb, offset, -1,
- &next_offset, FALSE);
+ &next_offset, false);
/*
* Put this line.
@@ -109,7 +109,7 @@ dissect_msnms(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
void
proto_register_msnms(void)
{
- static gint *ett[] = {
+ static int *ett[] = {
&ett_msnms,
};