aboutsummaryrefslogtreecommitdiffstats
path: root/epan/exported_pdu.c
AgeCommit message (Collapse)AuthorFilesLines
2016-01-24Add the packet number to the packet_info structure, and use it.Guy Harris1-4/+4
That removes most of the uses of the frame number field in the frame_data structure. Change-Id: Ie22e4533e87f8360d7c0a61ca6ffb796cc233f22 Reviewed-on: https://code.wireshark.org/review/13509 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-06-25Add ability to export PDUs for heuristic dissectors alsoPascal Quantin1-3/+4
Change-Id: I1bf1aa9794f9b4f106edffd4986fc0b1014522fa Reviewed-on: https://code.wireshark.org/review/9099 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-10-10Add editor modelines; Adjust whitespace as needed.Bill Meier1-6/+19
Change-Id: I3dc57f4c2ca57585103e3b71503ac4c332903e50 Reviewed-on: https://code.wireshark.org/review/4594 Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-06-19Add the ability to dynamically add a new protocol to export PDU dialog boxPascal Quantin1-0/+24
Change-Id: I83012cc963d514982e40010e837e11a6fcf1bc3e Reviewed-on: https://code.wireshark.org/review/2423 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-04-18Exported PDU: add support for more than 32 tagsPascal Quantin1-186/+201
Change-Id: Idc9f105164919827a8a81c88b5a56de4fa25df0b Reviewed-on: https://code.wireshark.org/review/1197 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>
2014-02-25Remove trailing whitespaceBill Meier1-1/+1
Change-Id: I8116f63ff88687c8db3fd6e8e23b22ab2f759af0 Reviewed-on: https://code.wireshark.org/review/385 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
2014-01-06Try to fix warning: cast discards '__attribute__((const))' qualifier from ↵Anders Broman1-2/+2
pointer target type . svn path=/trunk/; revision=54619
2013-11-21Remove ethertype, mpls_label and ppids from packet_info structure.Michael Mann1-33/+1
The information was converted to "proto" data within their respective dissectors strictly for use in "Decode As". svn path=/trunk/; revision=53489
2013-07-29support exporting decrypted DVB-CI/CI+ SAC messagesMartin Kaiser1-1/+17
using the new export PDU mechanism svn path=/trunk/; revision=51019
2013-06-19Add export of SS7 OPC/DPCPascal Quantin1-18/+73
svn path=/trunk/; revision=50060
2013-06-17More PDU export work:Pascal Quantin1-28/+100
- add automatic export of port type when exporting a source / destination port - add export of SCTP PPID (usefulness to be checked) - fix some field size svn path=/trunk/; revision=49989
2013-05-14Fix copy/paste errorsPascal Quantin1-2/+2
svn path=/trunk/; revision=49306
2013-05-14Add a tag for original frame number.Anders Broman1-0/+20
svn path=/trunk/; revision=49298
2013-05-14Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=49287
2013-05-10Fix a few bugs related to PDU export feature:Pascal Quantin1-13/+16
- tag length is wrong if proto name was a multiple of 4 bytes - tag length is wrong in case no IP address is available in packet_info structwhile tag is requested - endianness issue when dumping the port number - overlapping tag IPv4 Dst address and IPv6 Src address - do not call dissector when it is not found - typo errors Enhancements: - add a subtree for tag content - display IPv6 Src/Dst address svn path=/trunk/; revision=49232
2013-05-06Fix compilation on -Werror compilesJörg Mayer1-3/+2
svn path=/trunk/; revision=49186
2013-05-06Add a helper function to load tags, handle IP and port tags andAnders Broman1-0/+188
copy packet comments. svn path=/trunk/; revision=49184