Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-bssgp.h
1 /* packet-bssgp.h
2  * Routines for Base Station Subsystem GPRS Protocol dissection
3  * Copyright 2006, Anders Broman <anders.broman [at] ericsson.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 /* 3GPP TS 48.018 V 6.5.0 (2004-07) Release 6 */
13 #ifndef __PACKET_BSSGP_H__
14 #define __PACKET_BSSGP_H__
15 
16 #include "ws_symbol_export.h"
17 
18 WS_DLL_PUBLIC value_string_ext bssgp_cause_vals_ext;
19 
20 void bssgp_suspend_ack(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len);
21 guint16 de_bssgp_cell_id(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len, gchar *add_string, int string_len);
22 guint16 de_bssgp_rnc_identifier(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len _U_, gchar *add_string, int string_len);
23 guint16 de_bssgp_enb_id(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len, gchar *add_string, int string_len);
24 guint16 de_bssgp_source_BSS_to_target_BSS_transp_cont(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len, gchar *add_string, int string_len);
25 guint16 de_bssgp_target_BSS_to_source_BSS_transp_cont(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len, gchar *add_string, int string_len);
26 guint16 de_bssgp_list_of_setup_pfcs(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 offset, guint len _U_, gchar *add_string _U_, int string_len _U_);
27 
28 #endif /* __PACKET_BSSGP_H__ */
29 
30 /*
31  * Editor modelines - https://www.wireshark.org/tools/modelines.html
32  *
33  * Local variables:
34  * c-basic-offset: 4
35  * tab-width: 8
36  * indent-tabs-mode: nil
37  * End:
38  *
39  * vi: set shiftwidth=4 tabstop=8 expandtab:
40  * :indentSize=4:tabSize=8:noTabs=true:
41  */
Definition: packet_info.h:44
Definition: proto.h:904
Definition: value_string.h:170
Definition: tvbuff-int.h:35