summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lls.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-lls.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-lls.h')
-rw-r--r--epan/dissectors/packet-lls.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-lls.h b/epan/dissectors/packet-lls.h
index 04a48d0f..f2697820 100644
--- a/epan/dissectors/packet-lls.h
+++ b/epan/dissectors/packet-lls.h
@@ -14,23 +14,23 @@
#define __PACKET_LLS_H__
typedef struct {
- guint32 src_ip;
- guint32 dst_ip;
- guint16 dst_port;
+ uint32_t src_ip;
+ uint32_t dst_ip;
+ uint16_t dst_port;
} lls_slt_key_t;
typedef struct {
- guint8 service_category;
- guint8 sls_protocol;
- guint16 service_id;
- gint32 major_channel_num;
- gint32 minor_channel_num;
+ uint8_t service_category;
+ uint8_t sls_protocol;
+ uint16_t service_id;
+ int32_t major_channel_num;
+ int32_t minor_channel_num;
} lls_slt_value_t;
/* SLT Table Routines */
void lls_extract_save_slt_table(packet_info *pinfo, dissector_handle_t xml_handle);
-gboolean test_alc_over_slt(packet_info *pinfo, tvbuff_t *tvb, int offset, void *data);
-gchar *get_slt_channel_info(packet_info *pinfo);
+bool test_alc_over_slt(packet_info *pinfo, tvbuff_t *tvb, int offset, void *data);
+char *get_slt_channel_info(packet_info *pinfo);
#endif