aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-location.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-01 22:55:53 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-08-01 22:55:53 +0000
commit91d8d3c0a883cacd8ce6f6e7e1b0d5d36c48df80 (patch)
tree483ad3555945d66e0b27acdc6536ea56aabc0bf8 /epan/dissectors/packet-aim-location.c
parent2c6b26e7e1688b279bc4471512a1c79d9adcdd94 (diff)
From Jelmer Vernooij: add support for some more TLVs and another SNAC.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11577 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-aim-location.c')
-rw-r--r--epan/dissectors/packet-aim-location.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-aim-location.c b/epan/dissectors/packet-aim-location.c
index 44da9d81a5..7bfdd0e8b1 100644
--- a/epan/dissectors/packet-aim-location.c
+++ b/epan/dissectors/packet-aim-location.c
@@ -52,6 +52,7 @@
#define FAMILY_LOCATION_USERINFO 0x0006
#define FAMILY_LOCATION_WATCHERSUBREQ 0x0007
#define FAMILY_LOCATION_WATCHERNOT 0x0008
+#define FAMILY_LOCATION_USER_INFO_QUERY 0x0015
#define FAMILY_LOCATION_DEFAULT 0xffff
static const value_string aim_fnac_family_location[] = {
@@ -64,6 +65,7 @@ static const value_string aim_fnac_family_location[] = {
{ FAMILY_LOCATION_WATCHERSUBREQ, "Watcher Subrequest" },
{ FAMILY_LOCATION_WATCHERNOT, "Watcher Notification" },
{ FAMILY_LOCATION_DEFAULT, "Location Default" },
+ { FAMILY_LOCATION_USER_INFO_QUERY, "User Info Query" },
{ 0, NULL }
};
@@ -159,6 +161,9 @@ static int dissect_aim_location(tvbuff_t *tvb, packet_info *pinfo,
offset = dissect_aim_buddyname(tvb, pinfo, offset, loc_tree);
}
return offset;
+ case FAMILY_LOCATION_USER_INFO_QUERY:
+ offset = dissect_aim_buddyname(tvb, pinfo, offset+4, loc_tree);
+ return offset;
default:
return 0;
}