blob: ec0b48078dcd10571da6f23d6f5febccaaca0254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* packet-bicc_mst.c
* (Incomplete) Dissector for the 3GPP TS 29.205 BICC MST (Mobile Service Transport)
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_BICC_MST_H__
#define __PACKET_BICC_MST_H__
guint
dissect_bicc_mst_lcls_gcr(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len);
#endif
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/
|