aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ziop.c
AgeCommit message (Collapse)AuthorFilesLines
2014-06-18Fixup: tvb_* -> tvb_capturedDario Lombardo1-5/+5
Change-Id: I9209c1271967405c34c1b6fa43e1726a4d3a5a3f Reviewed-on: https://code.wireshark.org/review/2377 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-09Minor whitespace changes and to keep the GNU-syle indentation scheme consistent.Chris Maynard1-26/+24
svn path=/trunk/; revision=53894
2013-12-07- Make local functions static.Anders Broman1-0/+3
- Forward declaration of register function. svn path=/trunk/; revision=53817
2013-11-09Add data parameter to tcp_dissect_pdus() as well as convert it to using ↵Michael Mann1-94/+94
"new" style dissectors. Now that "bytes consumed" can be determined, should tcp_dissect_pdus() take advantage of that? Should tcp_dissect_pdus return length (bytes consumed)? There are many dissectors that just call tcp_dissect_pdus() then return tvb_length(tvb). Seems like that could all be rolled into one. svn path=/trunk/; revision=53198
2013-09-13Remove useless-use-of-emem, add modelines.Evan Huus1-4/+16
svn path=/trunk/; revision=52005
2013-09-12In some cases add include emem.hJörg Mayer1-0/+1
In other cases emem -> wmem svn path=/trunk/; revision=51994
2012-10-11Should have been part of r45470, changing format of "magic number"Michael Mann1-2/+2
svn path=/trunk/; revision=45471
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-12Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-5/+5
proto_tree_add_item() calls. Replaced the "little_endian" Boolean value with an "byte_order" value containing the setting of the byte-order ENC_ bit. svn path=/trunk/; revision=42607
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-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-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). svn path=/trunk/; revision=39426
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-3/+3
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-05-19Don't assign to an unused 'proto item *': Coverity 1033 & 906Bill Meier1-1/+1
svn path=/trunk/; revision=37308
2011-04-21Remove unneeded #include <errno>,<math>,<ctype> & "isprint";Bill Meier1-32/+27
Do minoir whitespace & indentation cleanup. svn path=/trunk/; revision=36786
2010-12-06Make some (preference) variables static.Jeff Morriss1-1/+1
svn path=/trunk/; revision=35134
2010-05-13As suggested in ↵Jeff Morriss1-19/+14
http://www.wireshark.org/lists/wireshark-dev/200809/msg00075.html (as referenced in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2907 ) and https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3411 : Write a new convenience routine for finding a conversation and, if it is not found, create it. The frame number and addresses are taken from pinfo (as is the common case). Use this function in a bunch of dissectors. svn path=/trunk/; revision=32790
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
2009-08-21Remove unneeded #includesKovarththanan Rajaratnam1-7/+0
svn path=/trunk/; revision=29497
2009-07-15Get rid of C++-style comment (and anglicize it).Guy Harris1-1/+1
svn path=/trunk/; revision=29105
2009-07-14From Alvaro Vega Garcia via bug 3652:Gerald Combs1-126/+58
Patch with some improvements for packet ziop dissector following patch about MIOP dissector submitted by Kovarththanan Rajaratnam. From me: Add a link to the protocol specification. Don't tvb_memcpy over structs! Remove some more tvbuffs. Don't call proto_item_add_subtree if we're not going to use the trees. Call proto_tree_add_item instead of proto_tree_add_text Remove a bunch of unused ett_ variables and a few other now-unused variables. Register the field array with the correct length. svn path=/trunk/; revision=29095
2009-03-05Remove stuff that's really "non-public" from .h files. Bill Meier1-15/+5
(Include in .c files as needed). svn path=/trunk/; revision=27616
2009-03-05Oops! Fix the fix Bill Meier1-8/+15
svn path=/trunk/; revision=27613
2009-03-05Minor rework of reg_handoff ...Bill Meier1-16/+5
svn path=/trunk/; revision=27610
2009-03-03From Alvaro Vega Garcia:Anders Broman1-0/+440
Support ZIOP and MIOP (specialized CORBA protocols). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3238 svn path=/trunk/; revision=27589