aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-email.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-09-17 02:02:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-09-17 02:02:04 +0000
commit410a0cb17436ce6d3b5c7a2b7e391cc6ffc8d780 (patch)
treee5fb207c54721311a5f33e77c2d313e76b0c1341 /epan/dissectors/packet-aim-email.c
parent17b215c16f2c967ad2bf2a869d6423743cca10c7 (diff)
From Jelmer Vernooij:
- Support for more generic TLV's - Support for two more SNAC families: email and sst - Support for extended status (as used by iChat) - Use correct TLV in SSI RightsInfo - Dissect and handle FNAC flags field correctly git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12022 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-aim-email.c')
-rw-r--r--epan/dissectors/packet-aim-email.c109
1 files changed, 109 insertions, 0 deletions
diff --git a/epan/dissectors/packet-aim-email.c b/epan/dissectors/packet-aim-email.c
new file mode 100644
index 0000000000..2c8acec84d
--- /dev/null
+++ b/epan/dissectors/packet-aim-email.c
@@ -0,0 +1,109 @@
+/* packet-aim-email.c
+ * Routines for AIM (OSCAR) dissection, SNAC Email
+ * Copyright 2004, Jelmer Vernooij <jelmer@samba.org>
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <ctype.h>
+
+#include <glib.h>
+
+#include <epan/packet.h>
+#include <epan/strutil.h>
+
+#include "packet-aim.h"
+
+#define FAMILY_EMAIL 0x0018
+
+/* Family Advertising */
+#define FAMILY_EMAIL_STATUS_REQ 0x0006
+#define FAMILY_EMAIL_STATUS_REPL 0x0007
+#define FAMILY_EMAIL_ACTIVATE 0x0016
+
+static const value_string aim_fnac_family_email[] = {
+ { FAMILY_EMAIL_STATUS_REQ, "Email Status Request" },
+ { FAMILY_EMAIL_STATUS_REPL, "Email Status Reply" },
+ { FAMILY_EMAIL_ACTIVATE, "Activate Email" },
+ { 0, NULL }
+};
+
+
+/* Initialize the protocol and registered fields */
+static int proto_aim_email = -1;
+
+/* Initialize the subtree pointers */
+static gint ett_aim_email = -1;
+
+static int dissect_aim_email(tvbuff_t *tvb _U_,
+ packet_info *pinfo _U_,
+ proto_tree *tree _U_)
+{
+ struct aiminfo *aiminfo = pinfo->private_data;
+
+ switch(aiminfo->subtype) {
+ default:
+ /* FIXME */
+ return 0;
+ }
+
+ return 0;
+}
+
+/* Register the protocol with Ethereal */
+void
+proto_register_aim_email(void)
+{
+
+/* Setup list of header fields */
+/*FIXME
+ static hf_register_info hf[] = {
+ };*/
+
+/* Setup protocol subtree array */
+ static gint *ett[] = {
+ &ett_aim_email,
+ };
+
+/* Register the protocol name and description */
+ proto_aim_email = proto_register_protocol("AIM E-mail", "AIM Email", "aim_email");
+
+/* Required function calls to register the header fields and subtrees used */
+/*FIXME
+ proto_register_field_array(proto_aim_email, hf, array_length(hf));*/
+ proto_register_subtree_array(ett, array_length(ett));
+}
+
+void
+proto_reg_handoff_aim_email(void)
+{
+ dissector_handle_t aim_handle;
+ aim_handle = new_create_dissector_handle(dissect_aim_email, proto_aim_email);
+ dissector_add("aim.family", FAMILY_EMAIL, aim_handle);
+ aim_init_family(FAMILY_EMAIL, "E-mail", aim_fnac_family_email);
+}