blob: a3564972fdcb1be3c1895331a6a0245f9f439466 (
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__
unsigned
dissect_bicc_mst_lcls_gcr(tvbuff_t *tvb, proto_tree *tree, uint32_t offset, unsigned 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:
*/
|