aboutsummaryrefslogtreecommitdiffstats
path: root/packet-aim-messaging.c
AgeCommit message (Collapse)AuthorFilesLines
2004-06-16Use "format_text()" on strings, so we handle non-printable characters.Guy Harris1-2/+3
Clean up white space a bit. svn path=/trunk/; revision=11157
2004-06-04From Devin Heitmueller: Fix some compilation warnings.Gerald Combs1-3/+1
svn path=/trunk/; revision=11103
2004-06-03From Devin Heitmueller: improve decoding of outgoing and incomingGuy Harris1-26/+22
message blocks. svn path=/trunk/; revision=11081
2004-05-23In outgoing messages:Guy Harris1-13/+21
put the screen name into the Info column before fetching the message text, so it gets into the Info column even if we throw an exception fetching the message text; use the right offset when adding the screen name to the protocol tree; use the right offset for the byte after the screen name when calling "aim_get_message()". svn path=/trunk/; revision=10971
2004-05-23Put in a missing space.Guy Harris1-2/+2
svn path=/trunk/; revision=10970
2004-05-05Use "tvb_reported_length_remaining()" in "until the end of the packet"Guy Harris1-84/+84
loops, so we mark frames as short if they've been cut short by a snapshot length. The user class in buddy list TLVs appears to be 2 bytes, in at least some captures; make "dissect_aim_userclass()" take the user class value, and the length of the user class field, as arguments, and have the caller fetch the value. Also, display the numerical value of the user class in hex, as it's a bitset. Fix the messaging dissector to put stuff under the top-level item rather than at the top level. Fix a typo. Clean up indentation. svn path=/trunk/; revision=10802
2004-04-26From Jelmer Vernooij:Olivier Biot1-43/+64
Add support form extra SNACs. All TLV's are now recognized. svn path=/trunk/; revision=10712
2004-04-20From Jelmer Vernooij:Guy Harris1-19/+64
Add support for a couple more SNAC's. Handle TLV's in a somewhat more extendible manner. Fix a bug in the buddylist dissector that caused pango warnings. svn path=/trunk/; revision=10646
2004-04-02From Devin Heitmueller: do a better job of decoding the AIM messagingGuy Harris1-17/+80
SNAC for outgoing and incoming subtypes. svn path=/trunk/; revision=10542
2004-03-23Zero-length arrays are *not* valid in C89, even if GCC doesn't happen toGuy Harris1-3/+5
have a problem with them; MSVC++, for example, doesn't handle them, so we comment them out. svn path=/trunk/; revision=10463
2004-03-23From Jelmer Vernooij: split the AIM dissector into multiple files, andGuy Harris1-0/+189
add a few more SNACs. svn path=/trunk/; revision=10450