Add format_text_wmem.
[metze/wireshark/wip.git] / epan / dissectors / packet-mstp.h
1 /* packet-mstp.h
2  * Routines for BACnet MS/TP datalink dissection
3  * Copyright 2008 Steve Karg <skarg@users.sourceforge.net> Alabama
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 #ifndef __MSTP_H__
25 #define __MSTP_H__
26
27 /**
28  * Returns a value string for the BACnet MS/TP Frame Type.
29  * @param val BACnet MS/TP Frame value
30  * @return constant C String with MS/TP Frame Type
31  */
32 const gchar *
33 mstp_frame_type_text(guint32 val);
34
35 /**
36  * Dissects the BACnet MS/TP packet after the preamble,
37  * starting with the MS/TP Frame type octet.  Passes
38  * the PDU, if there is one, to the BACnet dissector.
39  * @param tvb the tv buffer of the current data
40  * @param pinfo the packet info of the current data
41  * @param tree the tree to append this item to
42  * @param subtree the sub tree to append this item to
43  * @param offset the offset in the tvb
44  */
45 void
46 dissect_mstp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_tree *subtree, gint offset);
47
48 #endif /* __MSTP_H__ */
49
50