From Clinton Work: dissect Cisco PID 0x010b as STP (it's actually their
[obnox/wireshark/wip.git] / packet-aim-invitation.c
1 /* packet-aim-invitation.c
2  * Routines for AIM Instant Messenger (OSCAR) dissection, SNAC Invitation
3  * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
4  *
5  * $Id: packet-aim-invitation.c,v 1.3 2004/03/24 06:36:32 ulfl 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_INVITATION 0x0006
43
44 /* Family Invitation */
45 #define FAMILY_INVITATION_ERROR       0x0001
46 #define FAMILY_INVITATION_FRIEND_REQ  0x0002
47 #define FAMILY_INVITATION_FRIEND_REPL 0x0003
48 #define FAMILY_INVITATION_DEFAULT     0xffff
49
50 static const value_string aim_fnac_family_invitation[] = {
51   { FAMILY_INVITATION_ERROR, "Error" },
52   { FAMILY_INVITATION_FRIEND_REQ, "Invite a friend to join AIM" },
53   { FAMILY_INVITATION_FRIEND_REPL, "Invitation Ack" },
54   { FAMILY_INVITATION_DEFAULT, "Invitation Default" },
55   { 0, NULL }
56 };
57
58 /* Initialize the protocol and registered fields */
59 static int proto_aim_invitation = -1;
60
61 static int ett_aim_invitation = -1;
62
63 /* Register the protocol with Ethereal */
64 void
65 proto_register_aim_invitation(void)
66 {
67
68 /* Setup list of header fields */
69 /*FIXME
70   static hf_register_info hf[] = {
71   };*/
72
73 /* Setup protocol subtree array */
74   static gint *ett[] = {
75     &ett_aim_invitation,
76   };
77
78 /* Register the protocol name and description */
79   proto_aim_invitation = proto_register_protocol("AIM Invitation Service", "AIM Invitation", "aim_invitation");
80
81 /* Required function calls to register the header fields and subtrees used */
82 /*FIXME
83   proto_register_field_array(proto_aim_invitation, hf, array_length(hf));*/
84   proto_register_subtree_array(ett, array_length(ett));
85 }
86
87 void
88 proto_reg_handoff_aim_invitation(void)
89 {
90   /*dissector_handle_t aim_handle;*/
91   /* FIXME: Add dissector
92    * aim_handle = new_create_dissector_handle(dissect_aim_invitation, proto_aim_invitation);
93    * dissector_add("aim.family", FAMILY_INVITATION, aim_handle);
94    */
95   aim_init_family(FAMILY_INVITATION, "Invitation", aim_fnac_family_invitation);
96 }