aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rdt.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-2/+2
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-77/+77
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-5/+5
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-07-18Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier1-18/+0
svn path=/trunk/; revision=38095
2011-04-11Don't assign to a proto_item* that is not used before being overwritten.Martin Mathieson1-1/+1
Coverity 1017. svn path=/trunk/; revision=36566
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss1-9/+9
svn path=/trunk/; revision=34227
2010-09-15Remove a few more calls to check_col()Martin Mathieson1-24/+9
svn path=/trunk/; revision=34124
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
2010-01-22Fixes for gcc -Wshadow warnings; Fix indentation and do other minor cleanup ↵Bill Meier1-30/+30
in a few cases. svn path=/trunk/; revision=31617
2009-10-25From Jakub Zawadzki:Anders Broman1-2/+1
Cleanup dissector code - use proper memory functions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4164 svn path=/trunk/; revision=30691
2009-09-24Don't guard col_append_str with check_colKovarththanan Rajaratnam1-36/+9
svn path=/trunk/; revision=30125
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29346
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29345
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-62/+62
(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
2009-01-08Fix for bug 2902:Jaap Keuter1-14/+14
Make sure to check the right column before writing to it, and vice versa. svn path=/trunk/; revision=27191
2008-12-17Fix typos and spelling (mostly in text strings) Bill Meier1-1/+1
svn path=/trunk/; revision=27028
2008-09-12Small revisions related to proto_reg_handoff ....Bill Meier1-12/+9
svn path=/trunk/; revision=26185
2008-03-01Rewrote to use g_strlcpy and g_strlcat.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=24525
2006-08-01Fix some fussy warnings seen on the Ubuntu buildbot logsMartin Mathieson1-2/+2
svn path=/trunk/; revision=18811
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2005-10-27get rid of a strcpyRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=16334
2005-09-01From Martin MathiesonAnders Broman1-26/+44
These small patches: - add RTSP header 'RDTFeatureLevel as a proper field - show feature level in RDT stream setup info - tidy up RDT info column text svn path=/trunk/; revision=15647
2005-08-12gmemchunk -> se_alloc() improvementsRonnie Sahlberg1-22/+3
svn path=/trunk/; revision=15318
2005-08-05More char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15218
2005-07-09Squelch various signed vs. unsigned warnings by:Guy Harris1-2/+2
making pointers to byte data be "guint8 *" rather than "char *", and making buffers holding byte data arrays of "guint8" rather than arrays of "char"; making pointers to text strings "char *" rather than "guchar *"; appropriately casting pointers (cast to "guint8 *" when passing to routines expecting "guint8 *" or when assigning to "guint8 *"); making port-number preferences "guint"; making enum preferences "gint"; making hf_ variables "int". Clean up white space. svn path=/trunk/; revision=14884
2005-05-27From Martin MathiesonAnders Broman1-65/+719
packet-rdt.c: - register a configurable UDP port (off by default, but needed where setup traffic isn't captured) - dissect extra 'buffer info' fields - move bit fields into 'flags' subtrees - misc. minor fixes and improvements (mainly formatting) Missed eralier... svn path=/trunk/; revision=14456
2005-05-16From Martin Mathieson:Anders Broman1-150/+1286
new version of the RDT dissector. It turns out that specs are available for this protocol on www.helixcommunity.org - this version was written by myself and Tom Marshall of RealNetworks, Inc. I Changed stream_id and asm_rule_number to be guint16 to fix compiler warnings. svn path=/trunk/; revision=14372
2005-03-06Martin Mathieson: Add information sourcesJörg Mayer1-0/+4
svn path=/trunk/; revision=13607
2005-02-20modify eol-style propertyLuis Ontanon1-2/+2
svn path=/trunk/; revision=13434
2005-02-19From Martin MathielsonLuis Ontanon1-0/+494
RDT (Realplayer Data Protocol) dissector and patch RTSP to create RDT conversations svn path=/trunk/; revision=13431