aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/export_pdu_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2013-12-08Fix some warnings: cast discards `__attribute__((const))' qualifier from ↵Jakub Zawadzki1-1/+1
pointer target type svn path=/trunk/; revision=53875
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-1/+1
subtypes, e.g. Network Monitor version 1 and Network Monitor version 2 are separate "file types", even though they both come from Network Monitor. Rename various functions, #defines, and variables appropriately. svn path=/trunk/; revision=53166
2013-08-21The export PDU mechanism creates a new capture which contains only theMartin Kaiser1-33/+30
exported PDUs. The currently opened capture file is closed. Make sure that this does not discard any unsaved data. Ask the user for confirmation and save the changes before running the export. svn path=/trunk/; revision=51459
2013-08-01Remove fdata->opt_comment, add pkt_comment to pinfoJakub Zawadzki1-5/+1
Original (read from file) comments can be accessed by pkthdr->opt_comment Keep user comments in seperated BST, add new method for epan session to get it. svn path=/trunk/; revision=51090
2013-07-29support exporting decrypted DVB-CI/CI+ SAC messagesMartin Kaiser1-0/+1
using the new export PDU mechanism svn path=/trunk/; revision=51019
2013-06-28Use newly assigned DLT for PDU export functionalityPascal Quantin1-10/+6
svn path=/trunk/; revision=50212
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-1/+1
svn path=/trunk/; revision=50163
2013-06-18Add ability to export decrypted IPsec PDUsPascal Quantin1-1/+2
svn path=/trunk/; revision=50022
2013-05-23Include ui/gtk/export_pdu_dlg.h so that the functions defined here areGuy Harris1-0/+2
checked against their declarations. svn path=/trunk/; revision=49540
2013-05-21Fix compilation with GTK version older than 2.24Pascal Quantin1-0/+2
svn path=/trunk/; revision=49476
2013-05-20Make preparation to select which level tap is to be used.Anders Broman1-6/+19
svn path=/trunk/; revision=49446
2013-05-19Add filter capabillities.Anders Broman1-30/+68
svn path=/trunk/; revision=49419
2013-05-10Fix a few bugs related to PDU export feature:Pascal Quantin1-7/+7
- 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-06Add a helper function to load tags, handle IP and port tags andAnders Broman1-1/+6
copy packet comments. svn path=/trunk/; revision=49184
2013-05-05Make compiling export_pdu_dlg.c actually work:Jörg Mayer1-3/+3
- Fix some warnings about unused variables - Add to Cmake build svn path=/trunk/; revision=49180
2013-05-05Add the abillity to export PDU:s to file using a USER_DLT adding meta data ↵Anders Broman1-0/+309
before the actual protocol PDU. Some meta tags makes it possible for the dissector of the user DLT to call the correct PDU dissector. This is prof-of-concept needs a bit of cleanup. svn path=/trunk/; revision=49176