aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcm.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-05Fix some code remove by 296591399f90a9d89be958d91047aa724a77ee6dAlexis La Goutte1-0/+1
(Copyright or info about file...) Change-Id: I90ba8b1c3ec8406b0c3365a69a8555837fc4bbb1 Reviewed-on: https://code.wireshark.org/review/515 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@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>
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2009-07-10From David Aggeler:Jaap Keuter1-2/+2
* - Fixed corrupt files on DICOM Export * - Fixed memory limitation on DICOM Export * - Removed minimum packet length for static port mode * - Simplified checks for heuristic mode * - Removed unused functions svn path=/trunk/; revision=29060
2008-10-11From David Aggeler: Anders Broman1-1/+0
packet-dcm, improved DICOM Tag support, misc fixes. svn path=/trunk/; revision=26413
2008-07-25From David Aggeler:Anders Broman1-27/+0
Follow-up from SVN 25825 check in The g_slist_free() is really needed in export_object.c, otherwise, the export list has false (repetitive) entries in it, that cause a crash when selecting them. Whether false entries are in the list, only depends on the speed of the export processing, since this tap is Replaced all guchar with gchar. This should eliminate the warnings on solaris. I guess I used the wrong reference. Added patch for 'Authors' in case I need to add myself to the list. svn path=/trunk/; revision=25834
2008-07-25static variable declarations don't belong in header filesJeff Morriss1-275/+2
svn path=/trunk/; revision=25830
2008-07-25Add a newline to the end of the file.Martin Mathieson1-1/+1
Still seeing these errors... packet-dcm.c: In function `dcm_uid_or_desc': packet-dcm.c:960: warning: pointer type mismatch in conditional expression packet-dcm.c: At top level: packet-dcm.c:229: warning: 'dcm_desegment_headers' defined but not used svn path=/trunk/; revision=25828
2008-07-25From David Aggeler:Anders Broman1-0/+10
multiple PDV per PDU support - Support multiple PDVs per PDU - Better summary, in PDV, PDU header and in INFO Column, e.g. show commands like C-STORE - Fixed Association Reject (was working before my changes) - Fixed PDV Continuation with very small packets. Reduced minimum packet length from 10 to 2 Bytes for PDU Type 4 - Fixed PDV Continuation. Last packet was not found correctly. - Fixed complilation warning (build 56 on solaris) - Fixed tree expansion (hf_dcm_xxx) - Added expert_add_info() for Assoctiation Reject - Added expert_add_info() for Assoctiation Abort - Added expert_add_info() for short PDVs (i.e. last fragment, but PDV is not completed yet) - Clarified and grouped data structures and its related code (dcmItem, dcmState) to have consistent _new() & _get() functions and to be be according to coding conventions - Added more function declaration to be more consistent - All dissect_dcm_xx now have (almost) the same parameter order - Removed DISSECTOR_ASSERT() for packet data errors. Not designed to handle this. - Handle multiple DICOM Associations in a capture correctly, i.e. if presentation contexts are different. svn path=/trunk/; revision=25824
2008-07-25From David Aggeler:Anders Broman1-0/+330
DICOM dissector bugfixes and features svn path=/trunk/; revision=25823