aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-messaging.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-22 08:04:40 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-22 08:04:40 +0000
commit8dedbeed1cd700846478d9de90e0d3b2e364d684 (patch)
treeb7eea02b640b90ba06f02d8699f52480ce810446 /epan/dissectors/packet-aim-messaging.c
parentcc6754d659239dc7a1265351be5ee5c4a30171a2 (diff)
From Jelmer Vernooij:
- Dissect the DC (Direct Connection) info structure - Dissect the complete buddy icon family (you can now save buddy icons as .JPG's/.PNG's directly from the capture using the "Export selected bytes..." option!) - Add a function that dissects a sequence of TLV's instead of having while() loops all over the place. svn path=/trunk/; revision=12063
Diffstat (limited to 'epan/dissectors/packet-aim-messaging.c')
-rw-r--r--epan/dissectors/packet-aim-messaging.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/epan/dissectors/packet-aim-messaging.c b/epan/dissectors/packet-aim-messaging.c
index 5640123ac1..b531889a4d 100644
--- a/epan/dissectors/packet-aim-messaging.c
+++ b/epan/dissectors/packet-aim-messaging.c
@@ -153,12 +153,8 @@ static int dissect_aim_msg_incoming(tvbuff_t *tvb, packet_info *pinfo, proto_tre
offset = dissect_aim_userinfo(tvb, pinfo, offset, msg_tree);
- while(tvb_reported_length_remaining(tvb, offset) > 0) {
- offset = dissect_aim_tlv(tvb, pinfo, offset, msg_tree,
+ return dissect_aim_tlv_sequence(tvb, pinfo, offset, msg_tree,
messaging_incoming_ch1_tlvs);
- }
-
- return offset;
}
static int dissect_aim_msg_params(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *msg_tree)