aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aim-generic.c
AgeCommit message (Collapse)AuthorFilesLines
2013-03-12svn path=/trunk/; revision=48272Anders Broman1-0/+3
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2011-11-15tvb_[reported_]length_remaining can return -1Bill Meier1-1/+1
svn path=/trunk/; revision=39870
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-8/+8
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-2/+2
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-04-04Don't assign to a proto_item * if the value won't be used: Coverity 823 & 824;Bill Meier1-38/+34
Fix a minor bug wherein a proto_tree_add_text used the wrong tree: Coverity 825; Remove some unneeded #includes; Use consistent indentation. svn path=/trunk/; revision=36449
2010-10-07(Minor) Rename a few variables in the global namespace to be a bit more unique;Bill Meier1-5/+5
Also: rename additional (static) variables to be consistent with the above renames. svn path=/trunk/; revision=34412
2010-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32410
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-07-07Changed flags_set_truth -> tfs_set_notsetStig Bjørlykke1-2/+2
svn path=/trunk/; revision=28989
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-30/+30
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2008-06-26Fix some warnings reported by gcc -Wshadow ...Bill Meier1-4/+4
svn path=/trunk/; revision=25607
2008-05-23From Alex Turbov:Jaap Keuter1-22/+23
Dissector for given SNAC has a bug with actual sizeof of rate_class and rate_group structure. So in UI clicking on 'Available Rate Classes' and concrete 'Rate Group 0x??' items in decoded packet window higlight incorrect bytes in hexdump window. svn path=/trunk/; revision=25374
2007-10-15Implement some of the minor possible speed improvment patches.Anders Broman1-4/+4
svn path=/trunk/; revision=23192
2007-08-30From Chris Maynard:Anders Broman1-30/+30
Incorrect display filter field naming convention. svn path=/trunk/; revision=22742
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=18196
2004-10-23Remove the include of <epan/prefs.h> from files that don't call anyGuy Harris1-1/+0
preference routines. svn path=/trunk/; revision=12380
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-09-22From Jelmer Vernooij:Guy Harris1-19/+4
- 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
2004-09-21From Jelmer Vernooij:Guy Harris1-265/+267
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
2004-09-17From Jelmer Vernooij:Guy Harris1-0/+49
- 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 svn path=/trunk/; revision=12022
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+561
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410