Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-lls.h
1/* packet-lls.h
2 * Copyright 2023, Sergey V. Lobanov <[email protected]>
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <[email protected]>
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
16typedef struct {
17 uint32_t src_ip;
18 uint32_t dst_ip;
19 uint16_t dst_port;
21
22typedef struct {
23 uint8_t service_category;
24 uint8_t sls_protocol;
25 uint16_t service_id;
26 int32_t major_channel_num;
27 int32_t minor_channel_num;
29
30/* SLT Table Routines */
31
32void lls_extract_save_slt_table(packet_info *pinfo, dissector_handle_t xml_handle);
33bool test_alc_over_slt(packet_info *pinfo, tvbuff_t *tvb, int offset, void *data);
34char *get_slt_channel_info(packet_info *pinfo);
35
36#endif
Definition packet_info.h:43
Definition packet.c:763
Definition packet-lls.h:16
Definition packet-lls.h:22
Definition tvbuff-int.h:35