Define some fcns & vars as static...
[metze/wireshark/wip.git] / epan / dissectors / packet-aim-chatnav.c
1 /* packet-aim.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection
3  * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
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.
15  *
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.
20  *
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdlib.h>
31 #include <ctype.h>
32
33 #include <glib.h>
34
35 #include <epan/packet.h>
36 #include <epan/strutil.h>
37
38 #include "packet-aim.h"
39
40 #define FAMILY_CHAT_NAV   0x000D
41
42 static const aim_subtype aim_fnac_family_chatnav[] = {
43         { 0x0001, "Error", dissect_aim_snac_error },
44         { 0x0002, "Request Limits", NULL },
45         { 0x0003, "Request Exchange", NULL },
46         { 0x0004, "Request Room Information", NULL },
47         { 0x0005, "Request Extended Room Information", NULL },
48         { 0x0006, "Request Member List", NULL },
49         { 0x0007, "Search Room", NULL },
50         { 0x0008, "Create", NULL },
51         { 0x0009, "Info", NULL },
52         { 0, NULL, NULL }
53 };
54
55 /* Initialize the protocol and registered fields */
56 static int proto_aim_chatnav = -1;
57
58 static int ett_aim_chatnav = -1;
59
60 /* Register the protocol with Wireshark */
61 void
62 proto_register_aim_chatnav(void)
63 {
64
65 /* Setup list of header fields */
66 #if 0 /*FIXME*/
67         static hf_register_info hf[] = {
68         };
69 #endif
70
71 /* Setup protocol subtree array */
72         static gint *ett[] = {
73                 &ett_aim_chatnav,
74         };
75 /* Register the protocol name and description */
76         proto_aim_chatnav = proto_register_protocol("AIM Chat Navigation", "AIM ChatNav", "aim_chatnav");
77
78 /* Required function calls to register the header fields and subtrees used */
79 /*FIXME
80   proto_register_field_array(proto_aim_chatnav, hf, array_length(hf));*/
81         proto_register_subtree_array(ett, array_length(ett));
82 }
83
84 void
85 proto_reg_handoff_aim_chatnav(void)
86 {
87         aim_init_family(proto_aim_chatnav, ett_aim_chatnav, FAMILY_CHAT_NAV, aim_fnac_family_chatnav);
88 }