Get rid of get_ber_last_reated_item() and fix dissection of wIN-TriggerList.
[obnox/wireshark/wip.git] / epan / dissectors / packet-aim-adverts.c
1 /* packet-aim-adverts.c
2  * Routines for AIM (OSCAR) dissection, SNAC Advertisements
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_ADVERTS    0x0005
43
44 static const aim_subtype aim_fnac_family_adverts[] = {
45   { 0x0001, "Error", dissect_aim_snac_error },
46   { 0x0002, "Request", NULL },
47         /* FIXME: */
48         /* From other sources, I understand this response contains 
49          * a GIF file, haven't actually seen one though. And this
50          * family appears to be deprecated, so we might never find out.. */
51   { 0x0003, "Data (GIF)", NULL },
52   { 0, NULL, NULL }
53 };
54
55 /* Initialize the protocol and registered fields */
56 static int proto_aim_adverts = -1;
57
58 /* Initialize the subtree pointers */
59 static gint ett_aim_adverts      = -1;
60
61 /* Register the protocol with Wireshark */
62 void
63 proto_register_aim_adverts(void)
64 {
65
66 /* Setup list of header fields */
67 /*FIXME
68   static hf_register_info hf[] = {
69   };*/
70
71 /* Setup protocol subtree array */
72   static gint *ett[] = {
73     &ett_aim_adverts,
74   };
75
76 /* Register the protocol name and description */
77   proto_aim_adverts = proto_register_protocol("AIM Advertisements", "AIM Advertisements", "aim_adverts");
78
79 /* Required function calls to register the header fields and subtrees used */
80 /*FIXME
81   proto_register_field_array(proto_aim_adverts, hf, array_length(hf));*/
82   proto_register_subtree_array(ett, array_length(ett));
83 }
84
85 void
86 proto_reg_handoff_aim_adverts(void)
87 {
88   aim_init_family(proto_aim_adverts, ett_aim_adverts, FAMILY_ADVERTS, aim_fnac_family_adverts);
89 }