aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-daap.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam2009-08-091-2/+1
| | | | svn path=/trunk/; revision=29340
* Apply the small performance enhancment patches for:Anders Broman2007-10-231-2/+2
| | | | | | | | | | - if offset is 0, tvb_length is the same as tvb_length_remaining, just faster. Replace - col_append_fstr() with faster col_append_str() - col_add_str() with col_set_str() when it's safe svn path=/trunk/; revision=23252
* Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris2007-05-291-1/+1
| | | | | | | routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
* change a whole bunch of ethereal into wiresharkRonnie Sahlberg2006-05-211-3/+3
| | | | svn path=/trunk/; revision=18196
* The real problem is that iTunes requests gzipped data and responds withGuy Harris2005-08-161-1/+2
| | | | | | | | | it, so unless you're reassembling headers and bodies the DAAP dissector will see the gzipped crap. The HTTP dissector should perhaps not bother handing gzipped or otherwise unusually-encoded bodies to subdissectors if it's not undoing the encoding. svn path=/trunk/; revision=15368
* Put in a comment asking about the music going over the connection - weGuy Harris2005-08-051-6/+5
| | | | | | shouldn't try to parse it as DAAP. svn path=/trunk/; revision=15231
* bugfix of crash_00001_20050124142515.cap: dissector packet-daap.c displayed ↵Ulf Lamping2005-01-261-0/+1
| | | | | | | | [Dissector Bug] as it dissected a length field and used it without checking it first. use tvb_ensure_bytes_exist() before using this length value, so [Malformed Packet] will be displayed svn path=/trunk/; revision=13177
* Use "tvb_format_text()" with %s format strings, so that we handleGuy Harris2005-01-051-5/+3
| | | | | | non-printable strings. svn path=/trunk/; revision=12952
* Propset eol-style and keywordsJörg Mayer2004-08-221-1/+1
| | | | svn path=/trunk/; revision=11805
* Use "tvb_get_ntoh64()", now that we have it.Guy Harris2004-08-221-5/+1
| | | | svn path=/trunk/; revision=11802
* From Kelly Byrd: DAAP support.Guy Harris2004-08-221-0/+406
svn path=/trunk/; revision=11801