aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-popup.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-21 08:01:29 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-21 08:01:29 +0000
commit94e550fe69ae9f2c1a33be6a98d6a99ff0fa4208 (patch)
treeb1fa0013f96edec2436ff6962ce8eef4053910b5 /epan/dissectors/packet-aim-popup.c
parentecd078e68ac5ee6e93e66c4ff2157b3141844f19 (diff)
From Jelmer Vernooij:
Remove some code duplication from the Oscar dissector (reduces the number of lines by 500) by providing a custom registration function for oscar families (aim_init_family). This also fixes a number of issues with column names. Add minor updates such as adding support for the Capability Info TLV on users. svn path=/trunk/; revision=12060
Diffstat (limited to 'epan/dissectors/packet-aim-popup.c')
-rw-r--r--epan/dissectors/packet-aim-popup.c45
1 files changed, 10 insertions, 35 deletions
diff --git a/epan/dissectors/packet-aim-popup.c b/epan/dissectors/packet-aim-popup.c
index 8aad38fd25..2bccc8d4ec 100644
--- a/epan/dissectors/packet-aim-popup.c
+++ b/epan/dissectors/packet-aim-popup.c
@@ -42,17 +42,6 @@
/* SNAC families */
#define FAMILY_POPUP 0x0008
-/* Family Popup */
-#define FAMILY_POPUP_ERROR 0x0001
-#define FAMILY_POPUP_COMMAND 0x0002
-#define FAMILY_POPUP_DEFAULT 0xffff
-
-static const value_string aim_fnac_family_popup[] = {
- { FAMILY_POPUP_ERROR, "Error" },
- { FAMILY_POPUP_COMMAND, "Display Popup Message Server Command" },
- { FAMILY_POPUP_DEFAULT, "Popup Default" },
- { 0, NULL }
-};
#define AIM_POPUP_TLV_MESSAGE_TEXT 0x001
#define AIM_POPUP_TLV_URL_STRING 0x002
@@ -75,29 +64,18 @@ static int proto_aim_popup = -1;
/* Initialize the subtree pointers */
static gint ett_aim_popup = -1;
-static int dissect_aim_snac_popup(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree)
+static int dissect_aim_popup(tvbuff_t *tvb, packet_info *pinfo, proto_tree *popup_tree)
{
- int offset = 0;
- struct aiminfo *aiminfo = pinfo->private_data;
- proto_item *ti = NULL;
- proto_tree *popup_tree = NULL;
-
- if(tree) {
- ti = proto_tree_add_text(tree, tvb, 0, -1,"AIM Popup Service");
- popup_tree = proto_item_add_subtree(ti, ett_aim_popup);
- }
-
- switch(aiminfo->subtype) {
- case FAMILY_POPUP_ERROR:
- return dissect_aim_snac_error(tvb, pinfo, 0, popup_tree);
- case FAMILY_POPUP_COMMAND:
- return dissect_aim_tlv(tvb, pinfo, offset, popup_tree, popup_tlvs);
- }
-
- return 0;
+ return dissect_aim_tlv(tvb, pinfo, 0, popup_tree, popup_tlvs);
}
+static const aim_subtype aim_fnac_family_popup[] = {
+ { 0x0001, "Error", dissect_aim_snac_error },
+ { 0x0002, "Display Popup Message Server Command" , dissect_aim_popup },
+ { 0, NULL, NULL }
+};
+
+
/* Register the protocol with Ethereal */
void
proto_register_aim_popup(void)
@@ -118,8 +96,5 @@ proto_register_aim_popup(void)
void
proto_reg_handoff_aim_popup(void)
{
- dissector_handle_t aim_handle;
- aim_handle = new_create_dissector_handle(dissect_aim_snac_popup, proto_aim_popup);
- dissector_add("aim.family", FAMILY_POPUP, aim_handle);
- aim_init_family(FAMILY_POPUP, "Popup", aim_fnac_family_popup);
+ aim_init_family(proto_aim_popup, ett_aim_popup, FAMILY_POPUP, aim_fnac_family_popup);
}