Use Ashok's IEEE-float-to-long code as the basis for
[obnox/wireshark/wip.git] / packet-wsp.h
1 /* packet-wsp.h
2  *
3  * Declarations for disassembly of WSP component of WAP traffic.
4  *
5  * $Id: packet-wsp.h,v 1.4 2001/12/07 11:10:53 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * WAP dissector based on original work by Ben Fowler
12  * Updated by Neil Hunter <neil.hunter@energis-squared.com>
13  * WTLS support by Alexandre P. Ferreira (Splice IP)
14  * 
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  * 
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  * 
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  */
29
30 #ifndef __PACKET_WSP_H__
31 #define __PACKET_WSP_H__
32
33 /* Implementation Status:
34  *
35  * Most PDUs decoded.
36  * Some headers decoded.
37  *
38  * TODO:
39  *      Capability encoding
40  *      Remaining headers (perhaps a place holder for those yet to be implemented)
41  *      Remaining PDUs
42  */
43
44 /* These reason codes are also used in the WTP dissector as the WTP user is
45  * assumed to be WSP */
46 static const value_string vals_wsp_reason_codes[] = {
47         { 0xE0, "Protocol Error (Illegal PDU)" },
48         { 0xE1, "Session disconnected" },
49         { 0xE2, "Session suspended" },
50         { 0xE3, "Session resumed" },
51         { 0xE4, "Peer congested" },
52         { 0xE5, "Session connect failed" },
53         { 0xE6, "Maximum receive unit size exceeded" },
54         { 0xE7, "Maximum outstanding requests exceeded" },
55         { 0xE8, "Peer request" },
56         { 0xE9, "Network error" },
57         { 0xEA, "User request" },
58         { 0xEB, "No specific cause, no retries" },
59         { 0xEC, "Push message cannot be delivered" },
60         { 0xED, "Push message discarded" },
61         { 0xEE, "Content type cannot be processed" },
62 };
63
64 void add_multipart_data (proto_tree *, tvbuff_t *);
65 guint add_content_type (proto_tree *, tvbuff_t *, guint, guint *, const char **);
66
67 #endif /* packet-wsp.h */