Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-lls.h
1 /* packet-lls.h
2  * Copyright 2023, Sergey V. Lobanov <sergey@lobanov.in>
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #include <epan/packet.h>
12 
13 #ifndef __PACKET_LLS_H__
14 #define __PACKET_LLS_H__
15 
16 typedef struct {
17  guint32 src_ip;
18  guint32 dst_ip;
19  guint16 dst_port;
21 
22 typedef struct {
23  guint8 service_category;
24  guint8 sls_protocol;
25  guint16 service_id;
26  gint32 major_channel_num;
27  gint32 minor_channel_num;
29 
30 /* SLT Table Routines */
31 
32 void lls_extract_save_slt_table(packet_info *pinfo, dissector_handle_t xml_handle);
33 gboolean test_alc_over_slt(packet_info *pinfo, tvbuff_t *tvb, int offset, void *data);
34 gchar *get_slt_channel_info(packet_info *pinfo);
35 
36 #endif
Definition: packet_info.h:44
Definition: packet.c:763
Definition: packet-lls.h:16
Definition: packet-lls.h:22
Definition: tvbuff-int.h:35