aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-miop.c
AgeCommit message (Collapse)AuthorFilesLines
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-14Fix some trivial warnings.Jakub Zawadzki1-0/+3
svn path=/trunk/; revision=54085
2013-10-16Remove trailing blanks; Fix some indentation;Bill Meier1-1/+14
Add editor modelines. svn path=/trunk/; revision=52653
2013-10-14Try to pptimize heuristics slightly.Anders Broman1-4/+8
svn path=/trunk/; revision=52603
2013-09-15emem -> wmemPascal Quantin1-6/+8
svn path=/trunk/; revision=52063
2013-09-15Convert proto_tree_add_uint_format to proto_tree_add_uint_format_value if ↵Michael Mann1-2/+2
hf_ field name is the first part of the formatted string. This was done with a perl script on the dissectors directory (packet-*.c), followed by manual inspection of the output. The manual inspection yielded a few cases that really should have been proto_tree_add_uint or proto_tree_add_item, so I updated them accordingly. The script didn't catch as many as I would have liked, but it's a start. The most common (ab)use of proto_tree_add_uint_format was for appending strings to CRC/checksum values to note good or bad CRC/checksum. svn path=/trunk/; revision=52045
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-1/+1
svn path=/trunk/; revision=51852
2013-07-03expert_add_info_format_text + proto_tree_add_text = ↵Michael Mann1-11/+7
proto_tree_add_expert_format, where applicable. svn path=/trunk/; revision=50377
2013-05-27Batch of filterable expert infosMichael Mann1-4/+15
svn path=/trunk/; revision=49596
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-14/+14
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=42604
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-05-20Don't assign to a proto_item* if the value won't be used:Bill Meier1-4/+3
Fixes Coverity 903,935,968,985,997,999,1024,1025,1134; Remove unneeded #includes; Do whitespace cleanup. svn path=/trunk/; revision=37331
2011-04-21#include <errno.h> & #include <math.h> not req'd;Bill Meier1-2/+0
svn path=/trunk/; revision=36783
2011-04-21Remove unneeded #include <ctype.h> and "isprint.h";Bill Meier1-36/+33
Do minor whitespace cleanup. svn path=/trunk/; revision=36782
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-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29446
2009-07-06From Kovarththanan Rajaratnam via bug 3652:Gerald Combs1-108/+91
This patch protects against malformed Unique ID lengths (>= 252 bytes) and defer all tvb_xxx related calls to when we actually need them. This allows us to dissects as much as possible before bailing out (in case of a malformed length). From me: Add a link to the protocol specification. Remove packet-miop.h along with some struct definitions. (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. Add an expert item for the protocol version. Register the field array with the correct length. svn path=/trunk/; revision=28963
2009-03-05Remove stuff that's really "non-public" from .h files. Bill Meier1-0/+1
(Include in .c files as needed). svn path=/trunk/; revision=27616
2009-03-05Minor rework of reg_handoff ...Bill Meier1-10/+5
svn path=/trunk/; revision=27612
2009-03-03From Alvaro Vega Garcia:Anders Broman1-0/+345
Support ZIOP and MIOP (specialized CORBA protocols). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3238 svn path=/trunk/; revision=27589