some compilers dont like unnamed unions and structs
[obnox/wireshark/wip.git] / epan / dissectors / packet-aim-stats.c
1 /* packet-aim-stats.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC Stats
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 <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <ctype.h>
34
35 #include <glib.h>
36
37 #include <epan/packet.h>
38 #include <epan/strutil.h>
39
40 #include "packet-aim.h"
41
42 #define FAMILY_STATS      0x000B
43
44 /* Initialize the protocol and registered fields */
45 static int proto_aim_stats = -1;
46
47 /* Initialize the subtree pointers */
48 static gint ett_aim_stats    = -1;
49
50 static const aim_subtype aim_fnac_family_stats[] = {
51   { 0x0001, "Error", dissect_aim_snac_error },
52   { 0x0002, "Set Report Interval", NULL },
53   { 0x0003, "Report Request", NULL },
54   { 0x0004, "Report Ack", NULL },
55   { 0, NULL, NULL }
56 };
57
58
59 /* Register the protocol with Wireshark */
60 void
61 proto_register_aim_stats(void)
62 {
63
64 /* Setup list of header fields */
65 /*FIXME
66   static hf_register_info hf[] = {
67   };*/
68
69 /* Setup protocol subtree array */
70   static gint *ett[] = {
71     &ett_aim_stats,
72   };
73
74 /* Register the protocol name and description */
75   proto_aim_stats = proto_register_protocol("AIM Statistics", "AIM Stats", "aim_stats");
76
77 /* Required function calls to register the header fields and subtrees used */
78 /*FIXME
79   proto_register_field_array(proto_aim_stats, hf, array_length(hf));*/
80   proto_register_subtree_array(ett, array_length(ett));
81 }
82
83 void
84 proto_reg_handoff_aim_stats(void)
85 {
86   aim_init_family(proto_aim_stats, ett_aim_stats, FAMILY_STATS, aim_fnac_family_stats);
87 }