2 * Routines for AIM (OSCAR) dissection, SNAC Email
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_email(void);
35 void proto_reg_handoff_aim_email(void);
37 #define FAMILY_EMAIL 0x0018
39 static const aim_subtype aim_fnac_family_email
[] = {
40 { 0x0006, "Email Status Request", NULL
},
41 { 0x0007, "Email Status Reply", NULL
},
42 { 0x0016, "Activate Email", NULL
},
46 /* Initialize the protocol and registered fields */
47 static int proto_aim_email
= -1;
49 /* Initialize the subtree pointers */
50 static gint ett_aim_email
= -1;
52 /* Register the protocol with Wireshark */
54 proto_register_aim_email(void)
57 /* Setup list of header fields */
59 static hf_register_info hf[] = {
62 /* Setup protocol subtree array */
63 static gint
*ett
[] = {
67 /* Register the protocol name and description */
68 proto_aim_email
= proto_register_protocol("AIM E-mail", "AIM Email", "aim_email");
70 /* Required function calls to register the header fields and subtrees used */
72 proto_register_field_array(proto_aim_email, hf, array_length(hf));*/
73 proto_register_subtree_array(ett
, array_length(ett
));
77 proto_reg_handoff_aim_email(void)
79 aim_init_family(proto_aim_email
, ett_aim_email
, FAMILY_EMAIL
, aim_fnac_family_email
);