MSWSP: add two more Property Sets
[wireshark-wip.git] / epan / dissectors / packet-smpp.h
blob02072ee70113d88c63e75d2a58ff82ed82a1c713
1 /* packet-smpp.h
2 * Routines for Short Message Peer to Peer dissection
3 * Copyright 2001, Tom Uijldert.
5 * Data Coding Scheme decoding for GSM (SMS and CBS),
6 * provided by Olivier Biot.
8 * Dissection of multiple SMPP PDUs within one packet
9 * provided by Chris Wilson.
11 * $Id$
13 * Refer to the AUTHORS file or the AUTHORS section in the man page
14 * for contacting the author(s) of this file.
16 * Wireshark - Network traffic analyzer
17 * By Gerald Combs <gerald@wireshark.org>
18 * Copyright 1998 Gerald Combs
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version 2
23 * of the License, or (at your option) any later version.
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 * ----------
35 * Dissector of an SMPP (Short Message Peer to Peer) PDU, as defined by the
36 * SMS forum (www.smsforum.net) in "SMPP protocol specification v3.4"
37 * (document version: 12-Oct-1999 Issue 1.2)
40 #ifndef __PACKET_SMPP_H_
41 #define __PACKET_SMPP_H_
44 * Export dissection of some parameters
46 void smpp_handle_dcs(proto_tree *tree, tvbuff_t *tvb, int *offset);
49 /* Tap Record */
50 typedef struct _smpp_tap_rec_t {
51 guint command_id;
52 guint command_status;
53 } smpp_tap_rec_t;
55 #endif