Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-lls.h
blobf2697820235747e2667302d1c6db7b9f1dd5e4d6
1 /* packet-lls.h
2 * Copyright 2023, Sergey V. Lobanov <sergey@lobanov.in>
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #include <epan/packet.h>
13 #ifndef __PACKET_LLS_H__
14 #define __PACKET_LLS_H__
16 typedef struct {
17 uint32_t src_ip;
18 uint32_t dst_ip;
19 uint16_t dst_port;
20 } lls_slt_key_t;
22 typedef 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;
28 } lls_slt_value_t;
30 /* SLT Table Routines */
32 void lls_extract_save_slt_table(packet_info *pinfo, dissector_handle_t xml_handle);
33 bool test_alc_over_slt(packet_info *pinfo, tvbuff_t *tvb, int offset, void *data);
34 char *get_slt_channel_info(packet_info *pinfo);
36 #endif