aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-sst.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-sst.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-sst.c')
-rw-r--r--epan/dissectors/packet-aim-sst.c115
1 files changed, 115 insertions, 0 deletions
diff --git a/epan/dissectors/packet-aim-sst.c b/epan/dissectors/packet-aim-sst.c
new file mode 100644
index 0000000000..2271a838af
--- /dev/null
+++ b/epan/dissectors/packet-aim-sst.c
@@ -0,0 +1,115 @@
+/* packet-aim-sst.c
+ * Routines for AIM (OSCAR) dissection, SNAC Server Stored Themes
+ * 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_SST 0x0010
+
+/* Family Advertising */
+#define FAMILY_SST_ERROR 0x0001
+#define FAMILY_SST_UPLOAD_ICON_REQ 0x0002
+#define FAMILY_SST_UPLOAD_ICON_REPL 0x0003
+#define FAMILY_SST_DOWNLOAD_ICON_REQ 0x0004
+#define FAMILY_SST_DOWNLOAD_ICON_REPL 0x0005
+
+static const value_string aim_fnac_family_sst[] = {
+ { FAMILY_SST_ERROR, "Error" },
+ { FAMILY_SST_UPLOAD_ICON_REQ, "Upload Buddy Icon Request" },
+ { FAMILY_SST_UPLOAD_ICON_REPL, "Upload Buddy Icon Reply" },
+ { FAMILY_SST_DOWNLOAD_ICON_REQ, "Download Buddy Icon Request" },
+ { FAMILY_SST_DOWNLOAD_ICON_REPL, "Download Buddy Icon Reply" },
+ { 0, NULL }
+};
+
+
+/* Initialize the protocol and registered fields */
+static int proto_aim_sst = -1;
+
+/* Initialize the subtree pointers */
+static gint ett_aim_sst = -1;
+
+static int dissect_aim_sst(tvbuff_t *tvb _U_,
+ packet_info *pinfo _U_,
+ proto_tree *tree _U_)
+{
+ struct aiminfo *aiminfo = pinfo->private_data;
+ int offset = 0;
+
+ switch(aiminfo->subtype) {
+ case FAMILY_SST_ERROR:
+ return dissect_aim_snac_error(tvb, pinfo, offset, tree);
+ default:
+ return 0;
+ }
+
+ return 0;
+}
+
+/* Register the protocol with Ethereal */
+void
+proto_register_aim_sst(void)
+{
+
+/* Setup list of header fields */
+/*FIXME
+ static hf_register_info hf[] = {
+ };*/
+
+/* Setup protocol subtree array */
+ static gint *ett[] = {
+ &ett_aim_sst,
+ };
+
+/* Register the protocol name and description */
+ proto_aim_sst = proto_register_protocol("AIM Server Side Themes", "AIM SST", "aim_sst");
+
+/* Required function calls to register the header fields and subtrees used */
+/*FIXME
+ proto_register_field_array(proto_aim_sst, hf, array_length(hf));*/
+ proto_register_subtree_array(ett, array_length(ett));
+}
+
+void
+proto_reg_handoff_aim_sst(void)
+{
+ dissector_handle_t aim_handle;
+ aim_handle = new_create_dissector_handle(dissect_aim_sst, proto_aim_sst);
+ dissector_add("aim.family", FAMILY_SST, aim_handle);
+ aim_init_family(FAMILY_SST, "Server Stored Themes", aim_fnac_family_sst);
+}