1 /* packet-cell_broadcast.h
5 * Copyright 2011, Mike Morrin <mike.morrin [AT] ipaccess.com>,
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef PACKET_CELL_BROADCAST_H
27 #define PACKET_CELL_BROADCAST_H
31 * Dissects the GSM/UMTS/SABP Message Identifier
33 * @param tvb the tv buffer of the current data
34 * @param tree the tree to append this item to
35 * @param offset the offset in the tvb
37 void dissect_cbs_message_identifier(tvbuff_t
*tvb
, proto_tree
*tree
, guint16 offset
);
41 * Decodes the GSM/UMTS/SABP message Serial Number
43 * @param tvb the tv buffer of the current data
44 * @param tree the tree to append this item to
45 * @param offset the offset in the tvb
47 void dissect_cbs_serial_number(tvbuff_t
*tvb
, proto_tree
*tree
, guint16 offset
);
51 * Dissects UMTS/SABP Cell Broadcast Message
53 * @param tvb the tv buffer of the current data
54 * @param pinfo the packet info of the current data
55 * @param tree the tree to append this item to
57 guint16
dissect_umts_cell_broadcast_message(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
);
62 tvbuff_t
* dissect_cbs_data(guint8 sms_encoding
, tvbuff_t
*tvb
, proto_tree
*tree
, packet_info
*pinfo
, guint16 offset
);
64 #endif /* PACKET_CELL_BROADCAST_H */