summaryrefslogtreecommitdiffstats
path: root/plugins/epan/unistim/packet-unistim.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
commit9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch)
tree2784370cda9bbf2da9114d70f05399c0b229d28c /plugins/epan/unistim/packet-unistim.h
parentAdding debian version 4.2.6-1. (diff)
downloadwireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz
wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'plugins/epan/unistim/packet-unistim.h')
-rw-r--r--plugins/epan/unistim/packet-unistim.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/epan/unistim/packet-unistim.h b/plugins/epan/unistim/packet-unistim.h
index b1462a6a..0eb8db94 100644
--- a/plugins/epan/unistim/packet-unistim.h
+++ b/plugins/epan/unistim/packet-unistim.h
@@ -15,22 +15,22 @@
typedef struct _unistim_info_t
{
- guint8 rudp_type; /* NAK, ACK, Payload */
- guint8 payload_type; /* unistim payload type (aggregate, non-aggregate, encapsulated) */
- guint32 sequence; /* rudp sequence number */
- guint32 termid; /* termid if available */
+ uint8_t rudp_type; /* NAK, ACK, Payload */
+ uint8_t payload_type; /* unistim payload type (aggregate, non-aggregate, encapsulated) */
+ uint32_t sequence; /* rudp sequence number */
+ uint32_t termid; /* termid if available */
address it_ip; /* IP addr of it, determined by who is sending termids */
- guint32 it_port; /* port of it (phone) */
+ uint32_t it_port; /* port of it (phone) */
address ni_ip; /* IP addr of ni (server) as determined by who's sending termids */
- gint key_val; /* actual key pressed (-1 if not used) */
- gint key_state; /* Key state 1=down 0=up */
- gint hook_state; /* Hook state 1=offhook 0=onhook */
- gint stream_connect; /* Audio stream connect 1=connect 0=disconnect */
- gint trans_connect; /* Transducer connect? 1=connect 0=disconnect */
- gint set_termid; /* Set the termid 1=set termid */
- const guint8 *string_data; /* Any time a string is written to the display, this has the string */
- gint call_state; /* Not used? */
- guchar *key_buffer; /* Used in voip-calls.c tap, holds call keys pressed */
+ int key_val; /* actual key pressed (-1 if not used) */
+ int key_state; /* Key state 1=down 0=up */
+ int hook_state; /* Hook state 1=offhook 0=onhook */
+ int stream_connect; /* Audio stream connect 1=connect 0=disconnect */
+ int trans_connect; /* Transducer connect? 1=connect 0=disconnect */
+ int set_termid; /* Set the termid 1=set termid */
+ const uint8_t *string_data; /* Any time a string is written to the display, this has the string */
+ int call_state; /* Not used? */
+ unsigned char *key_buffer; /* Used in voip-calls.c tap, holds call keys pressed */
} unistim_info_t;
#endif