bugfix to a bug reported by Ian Schorr:
[obnox/wireshark/wip.git] / 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: packet-aim-adverts.c,v 1.4 2004/04/26 18:21:09 obiot Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
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 /* Family Advertising */
45 #define FAMILY_ADVERTS_ERROR          0x0001
46 #define FAMILY_ADVERTS_REQUEST        0x0002
47 #define FAMILY_ADVERTS_DATA           0x0003
48 #define FAMILY_ADVERTS_DEFAULT        0xffff
49
50 static const value_string aim_fnac_family_adverts[] = {
51   { FAMILY_ADVERTS_ERROR, "Error" },
52   { FAMILY_ADVERTS_REQUEST, "Request" },
53   { FAMILY_ADVERTS_DATA, "Data (GIF)" },
54   { FAMILY_ADVERTS_DEFAULT, "Adverts Default" },
55   { 0, NULL }
56 };
57
58
59 /* Initialize the protocol and registered fields */
60 static int proto_aim_adverts = -1;
61
62 /* Initialize the subtree pointers */
63 static gint ett_aim_adverts      = -1;
64
65 static int dissect_aim_adverts(tvbuff_t *tvb _U_, 
66                                      packet_info *pinfo _U_, 
67                                      proto_tree *tree _U_)
68 {
69         struct aiminfo *aiminfo = pinfo->private_data;
70         int offset = 0;
71
72         switch(aiminfo->subtype) {
73                 case FAMILY_ADVERTS_ERROR:
74                 return dissect_aim_snac_error(tvb, pinfo, offset, tree);
75                 break;
76                 case FAMILY_ADVERTS_REQUEST:
77                         /* FIXME */
78                 return 0;
79                 case FAMILY_ADVERTS_DATA:
80                         /* FIXME: */
81                         /* From other sources, I understand this response contains 
82                          * a GIF file, haven't actually seen one though. And this
83                          * family appears to be deprecated, so we might never find out.. */
84                 return 0;
85         }
86
87         return 0;
88 }
89
90 /* Register the protocol with Ethereal */
91 void
92 proto_register_aim_adverts(void)
93 {
94
95 /* Setup list of header fields */
96 /*FIXME
97   static hf_register_info hf[] = {
98   };*/
99
100 /* Setup protocol subtree array */
101   static gint *ett[] = {
102     &ett_aim_adverts,
103   };
104
105 /* Register the protocol name and description */
106   proto_aim_adverts = proto_register_protocol("AIM Advertisements", "AIM Advertisements", "aim_adverts");
107
108 /* Required function calls to register the header fields and subtrees used */
109 /*FIXME
110   proto_register_field_array(proto_aim_adverts, hf, array_length(hf));*/
111   proto_register_subtree_array(ett, array_length(ett));
112 }
113
114 void
115 proto_reg_handoff_aim_adverts(void)
116 {
117   dissector_handle_t aim_handle;
118   aim_handle = new_create_dissector_handle(dissect_aim_adverts, proto_aim_adverts);
119   dissector_add("aim.family", FAMILY_ADVERTS, aim_handle);
120   aim_init_family(FAMILY_ADVERTS, "Advertisements", aim_fnac_family_adverts);
121 }