aboutsummaryrefslogtreecommitdiffstats
path: root/packet-slimp3.c
AgeCommit message (Collapse)AuthorFilesLines
2003-02-27"in_str" is a boolean; make it so.Guy Harris1-7/+14
For strings, make the item for the string cover all the characters of the string, not just the first one. svn path=/trunk/; revision=7214
2003-02-27From Tom Nisbet: SLIMP3 protocol version 2 support.Guy Harris1-27/+210
svn path=/trunk/; revision=7213
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-81/+81
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-9/+1
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. svn path=/trunk/; revision=5932
2002-05-06Conversations aren't being used, so don't bother includingGuy Harris1-2/+1
<epan/conversation.h>. svn path=/trunk/; revision=5405
2002-04-29Removal (or, at least, #ifdeffing out) of unused variables andGuy Harris1-8/+1
functions, from David Frascone. svn path=/trunk/; revision=5288
2002-02-02Use "tvb_offset_exists()" rather than "tvb_length_remaining()" in a loopGuy Harris1-12/+22
scanning the tvbuff. Also use "tvb_offset_exists()" before accessing the tvbuff in that loop; the loop is only building the Info column, so it shouldn't throw an exception before building the list. (XXX - it should arguably all be done in one loop, with the Info column built on the fly.) svn path=/trunk/; revision=4672
2002-01-24Replace a bunch of "tvb_length()" and "tvb_length_remaining()" calls inGuy Harris1-11/+10
arguments to "proto_tree_add_text()", and to "proto_tree_add_XXX()" calls that add FT_NONE or FT_PROTO items to the protocol tree, with -1. Replace some calls to "tvb_length()" or "tvb_length_remaining()" with calls to "tvb_reported_length()" and "tvb_reported_length_remaining()", as those give the actual length of the data in the packet, not just the data that happened to be captured. svn path=/trunk/; revision=4605
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris1-3/+3
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). svn path=/trunk/; revision=4586
2001-12-27Adds support for the data protocol used by the SliMP3 embedded MP3Ashok Narayanan1-0/+548
player. See www.slimdevices.com for details. svn path=/trunk/; revision=4453