aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cell_broadcast.h
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>
2014-01-13In a source file that defines external functions, the header file thatGuy Harris1-4/+8
declares the functions must be included, in order to make sure the declarations match the function signature. Make it so. They *didn't* match; fix that. Do *not* use 16-bit tvbuff offsets; there is no advantage to that (and, in fact, 32-bit arithmetic may be easier on some platforms), and it has the disadvantage that you're more likely to have the offset overflow. dissect_cbs_serial_number() returns the new offset, not the length of the item it dissected; don't add its return value to the offset, set the offset to its return value. Make dissect_cbs_message_identifier() return the new offset as well, for consistency, and don't add *its* return value to the offset. svn path=/trunk/; revision=54714
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-3/+3
svn path=/trunk/; revision=52591
2013-08-10Fix (-W)documentation error found by ClangAlexis La Goutte1-9/+9
./packet-cell_broadcast.h:33:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:34:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ ./packet-cell_broadcast.h:35:16: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param offset ~~~~~~~~~~~~^ ./packet-cell_broadcast.h:43:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:44:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ ./packet-cell_broadcast.h:45:16: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param offset ~~~~~~~~~~~~^ ./packet-cell_broadcast.h:53:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:54:15: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param pinfo ~~~~~~~~~~~^ ./packet-cell_broadcast.h:55:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ svn path=/trunk/; revision=51263
2013-01-20Dissect ETWS and CMAS notificationsPascal Quantin1-0/+5
svn path=/trunk/; revision=47177
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-01-26From Mike Morrin:Anders Broman1-0/+59
Add dissectors for GSM and UMTS Cell Broadcast protocols. ( - the patch for gsmtap ) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6770 svn path=/trunk/; revision=40735