aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-image-png.c
AgeCommit message (Collapse)AuthorFilesLines
2011-05-04From Nick Glass via bug #5887: DACP (apple remote) enhancement to DAAPStephen Fisher1-0/+1
dissector. Me: Add Nick to AUTHORS file. svn path=/trunk/; revision=36987
2011-03-24From Dirk: fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2930 :Jeff Morriss1-14/+12
Make the image (png, gif, jfif) dissectors "new style" so that they don't dissect data that does not belong to them. Modify the HTTP dissector to call heuristic dissectors on the body if the registered subdissector does not accept/dissect the data. From me: don't use assert() and don't add a preference to the HTTP dissector for this behavior: it makes sense to behave like that by default. svn path=/trunk/; revision=36305
2011-03-22From Dirk via bug #5771: Add heuristic dissector for images and HTTP Stephen Fisher1-0/+15
Also add to AUTHORS file. svn path=/trunk/; revision=36253
2009-09-24* Prefer col_append_str instead of col_append_fstr for constant stringsKovarththanan Rajaratnam1-2/+1
* Remove check_col guards svn path=/trunk/; revision=30127
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-32/+32
(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-12-17Fix some typos and spelling (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27037
2008-06-25Constify a bunch of stuff, to squelch -Wwrite-strings warnings. Guy Harris1-1/+1
epan/dissectors/packet-ncp2222.inc is a bit hard to fix, so we're not ready to enable that warning by default yet. Throw in some casts to handle GLib routines that take arbitrary non-const pointers (they can later return the pointers, and some callers might want to modify or free up those pointers in cases where they're known to be writable or allocated). Use ep_tvb_memdup() rather than a combination of ep_alloc() and tvb_memcpy(). Clean up some indentation. svn path=/trunk/; revision=25601
2007-01-02Oops: wireshark.com --> wireshark.orgBill Meier1-1/+1
Also: 1 additional Ethereal --> Wireshark svn path=/trunk/; revision=20272
2007-01-02More ethereal --> wiresharkBill Meier1-2/+2
svn path=/trunk/; revision=20270
2006-09-24don't replace the COL_PROTO and COL_INFO entries simply with "PNG", but ↵Ulf Lamping1-7/+2
append it only to the COL_INFO just like the GIF dissector is doing this keeps valuable info in COL_INFO, e.g. the HTTP status code svn path=/trunk/; revision=19308
2006-08-28Don't abort the entire program if we have bad data. Just mark theGerald Combs1-35/+36
packet as malformed and continue on our merry way. This should fix bugs 1064 - 1073. Fix up whitespace. svn path=/trunk/; revision=19057
2006-08-26two more chunksRonnie Sahlberg1-0/+66
svn path=/trunk/; revision=19045
2006-08-26fix wrong constant in a valuestringRonnie Sahlberg1-1/+66
add two more chunks to be dissected svn path=/trunk/; revision=19044
2006-08-26initial PNG dissector (Portable Network Graphics)Ronnie Sahlberg1-0/+300
svn path=/trunk/; revision=19042