aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-daap.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-4/+4
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-1/+1
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39426 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26Get rid of check_col, while at it set ENC.etxrab1-15/+13
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39149 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-04From Nick Glass via bug #5887: DACP (apple remote) enhancement to DAAPsfisher1-0/+82
dissector. Me: Add Nick to AUTHORS file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36987 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-06Fix various typos and spelling errors.wmeier1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35126 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-18Tighten up TLV processing a bit to prevent a potential loop.wmeier1-4/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34954 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-17Use value-string_ext fcns to access value_string array;wmeier1-287/+299
Sort value_string_array in ascending order by value; Reformat display of tag info to be more readable; Rework TLV processing; Remove unneeded variable; Minor whitespace cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34933 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-16From Yaniv Kaul via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5400 :morriss1-35/+284
The attached patch adds many more DAAP codes to be parsed properly by the DAAP dissector. In addition, it fixes some prints. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34899 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29340 f5534014-38df-0310-8fa8-9805f1628bb7
2007-10-23Apply the small performance enhancment patches for:etxrab1-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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23252 f5534014-38df-0310-8fa8-9805f1628bb7
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibguy1-1/+1
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21990 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-16The real problem is that iTunes requests gzipped data and responds withguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15368 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-05Put in a comment asking about the music going over the connection - weguy1-6/+5
shouldn't try to parse it as DAAP. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15231 f5534014-38df-0310-8fa8-9805f1628bb7
2005-01-26bugfix of crash_00001_20050124142515.cap: dissector packet-daap.c displayed ↵ulfl1-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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13177 f5534014-38df-0310-8fa8-9805f1628bb7
2005-01-05Use "tvb_format_text()" with %s format strings, so that we handleguy1-5/+3
non-printable strings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12952 f5534014-38df-0310-8fa8-9805f1628bb7
2004-08-22Propset eol-style and keywordsjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11805 f5534014-38df-0310-8fa8-9805f1628bb7
2004-08-22Use "tvb_get_ntoh64()", now that we have it.guy1-5/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11802 f5534014-38df-0310-8fa8-9805f1628bb7
2004-08-22From Kelly Byrd: DAAP support.guy1-0/+406
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11801 f5534014-38df-0310-8fa8-9805f1628bb7