1 /* packet-aim-translate.c
2 * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC Translate
3 * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <epan/packet.h>
32 #include "packet-aim.h"
34 void proto_register_aim_translate(void);
35 void proto_reg_handoff_aim_translate(void);
37 #define FAMILY_TRANSLATE 0x000C
39 static int proto_aim_translate
= -1;
41 /* Initialize the subtree pointers */
42 static gint ett_aim_translate
= -1;
44 static const aim_subtype aim_fnac_family_translate
[] = {
45 { 0x0001, "Error", dissect_aim_snac_error
},
46 { 0x0002, "Translate Request", NULL
},
47 { 0x0003, "Translate Reply", NULL
},
51 /* Register the protocol with Wireshark */
53 proto_register_aim_translate(void)
56 /* Setup list of header fields */
58 static hf_register_info hf[] = {
61 /* Setup protocol subtree array */
62 static gint
*ett
[] = {
65 /* Register the protocol name and description */
66 proto_aim_translate
= proto_register_protocol("AIM Translate", "AIM Translate", "aim_translate");
68 /* Required function calls to register the header fields and subtrees used */
70 proto_register_field_array(proto_aim_translate, hf, array_length(hf));*/
71 proto_register_subtree_array(ett
, array_length(ett
));
75 proto_reg_handoff_aim_translate(void)
77 aim_init_family(proto_aim_translate
, ett_aim_translate
, FAMILY_TRANSLATE
, aim_fnac_family_translate
);