MSWSP: fix dissect_mswsp_smb()
[wireshark-wip.git] / epan / dissectors / packet-aim-chatnav.c
blobef837b56bef973796f9885a9436a5952fc99f3ca
1 /* packet-aim.c
2 * Routines for AIM Instant Messenger (OSCAR) dissection
3 * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
5 * $Id$
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 #include "config.h"
28 #include <glib.h>
30 #include <epan/packet.h>
31 #include <epan/strutil.h>
33 #include "packet-aim.h"
35 void proto_register_aim_chatnav(void);
36 void proto_reg_handoff_aim_chatnav(void);
38 #define FAMILY_CHAT_NAV 0x000D
40 static const aim_subtype aim_fnac_family_chatnav[] = {
41 { 0x0001, "Error", dissect_aim_snac_error },
42 { 0x0002, "Request Limits", NULL },
43 { 0x0003, "Request Exchange", NULL },
44 { 0x0004, "Request Room Information", NULL },
45 { 0x0005, "Request Extended Room Information", NULL },
46 { 0x0006, "Request Member List", NULL },
47 { 0x0007, "Search Room", NULL },
48 { 0x0008, "Create", NULL },
49 { 0x0009, "Info", NULL },
50 { 0, NULL, NULL }
53 /* Initialize the protocol and registered fields */
54 static int proto_aim_chatnav = -1;
56 static int ett_aim_chatnav = -1;
58 /* Register the protocol with Wireshark */
59 void
60 proto_register_aim_chatnav(void)
63 /* Setup list of header fields */
64 #if 0 /*FIXME*/
65 static hf_register_info hf[] = {
67 #endif
69 /* Setup protocol subtree array */
70 static gint *ett[] = {
71 &ett_aim_chatnav,
73 /* Register the protocol name and description */
74 proto_aim_chatnav = proto_register_protocol("AIM Chat Navigation", "AIM ChatNav", "aim_chatnav");
76 /* Required function calls to register the header fields and subtrees used */
77 /*FIXME
78 proto_register_field_array(proto_aim_chatnav, hf, array_length(hf));*/
79 proto_register_subtree_array(ett, array_length(ett));
82 void
83 proto_reg_handoff_aim_chatnav(void)
85 aim_init_family(proto_aim_chatnav, ett_aim_chatnav, FAMILY_CHAT_NAV, aim_fnac_family_chatnav);