Add escaping of an apostrophe in XML output.
[obnox/wireshark/wip.git] / packet-aim-directory.c
1 /* packet-aim-directory.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC Directory
3  * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
4  *
5  * $Id: packet-aim-directory.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_DIRECTORY  0x000F
43
44 #define FAMILY_DIRECTORY_ERROR                      0x0001
45 #define FAMILY_DIRECTORY_SEARCH_USER_REQ        0x0002
46 #define FAMILY_DIRECTORY_SEARCH_USER_REPL   0x0003
47 #define FAMILY_DIRECTORY_INTERESTS_LIST_REQ 0x0004
48 #define FAMILY_DIRECTORY_INTERESTS_LIST_REP 0x0005
49
50 static const value_string aim_fnac_family_directory[] = {
51         { FAMILY_DIRECTORY_ERROR, "Error" },
52         { FAMILY_DIRECTORY_SEARCH_USER_REQ, "Client search for user request" },
53         { FAMILY_DIRECTORY_SEARCH_USER_REPL, "Server reply for search request (found users)" },
54         { FAMILY_DIRECTORY_INTERESTS_LIST_REQ, "Request interests list from server" },
55         { FAMILY_DIRECTORY_INTERESTS_LIST_REP, "Interests list" },
56         { 0, NULL },
57 };
58
59 static int proto_aim_directory = -1;
60 static int ett_aim_directory = -1;
61
62 static int dissect_aim_directory(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
63 {
64         struct aiminfo *aiminfo = pinfo->private_data;
65         proto_item *ti;
66         int offset = 0;
67         proto_tree *directory_tree = NULL;
68
69     if(tree) {
70         ti = proto_tree_add_text(tree, tvb, 0, -1, "Directory Service");
71         directory_tree = proto_item_add_subtree(ti, ett_aim_directory);
72         }
73
74         switch(aiminfo->subtype) {
75         case FAMILY_DIRECTORY_ERROR:
76                 return dissect_aim_snac_error(tvb, pinfo, 0, directory_tree);
77         case FAMILY_DIRECTORY_INTERESTS_LIST_REQ:
78                 return 0;
79         case FAMILY_DIRECTORY_SEARCH_USER_REQ:
80                 /* FIXME */
81                 return 0;
82         case FAMILY_DIRECTORY_SEARCH_USER_REPL:
83                 while (tvb_length_remaining(tvb, offset) > 0) {
84                         offset = dissect_aim_tlv(tvb, pinfo, offset, tree, client_tlvs);
85                 }
86                 return offset;
87         case FAMILY_DIRECTORY_INTERESTS_LIST_REP:
88                 /* FIXME */
89                 return 0;
90         }
91         return 0;
92 }
93
94 /* Register the protocol with Ethereal */
95 void
96 proto_register_aim_directory(void)
97 {
98
99 /* Setup list of header fields */
100 /*FIXME
101   static hf_register_info hf[] = {
102   };*/
103
104 /* Setup protocol subtree array */
105   static gint *ett[] = {
106           &ett_aim_directory
107   };
108 /* Register the protocol name and description */
109   proto_aim_directory = proto_register_protocol("AIM Directory Search", "AIM Directory", "aim_dir");
110
111 /* Required function calls to register the header fields and subtrees used */
112 /*FIXME
113   proto_register_field_array(proto_aim_directory, hf, array_length(hf));*/
114   proto_register_subtree_array(ett, array_length(ett));
115 }
116
117 void
118 proto_reg_handoff_aim_directory(void)
119 {
120   dissector_handle_t aim_handle;
121   aim_handle = new_create_dissector_handle(dissect_aim_directory, proto_aim_directory);
122   dissector_add("aim.family", FAMILY_DIRECTORY, aim_handle); 
123   aim_init_family(FAMILY_DIRECTORY, "Directory", aim_fnac_family_directory);
124 }