aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-01-05Qt: Move sized toolbar images to stock_icons.Gerald Combs232-258/+251
The sized (WWxHH) icons in the toolbar directory aren't limited to toolbars. Create a "stock_icons" directory and move them and their related SVGs there. Change-Id: I2c1852499594aa738371c79542f24bd3351653bb Reviewed-on: https://code.wireshark.org/review/25133 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-05Qt: Cleanup cases where QTreeWidgetItem is no longer usedMichael Mann5-6/+0
Change-Id: Ib2b6d4f73a6c9f1dacb728f6275a240487a73a02 Reviewed-on: https://code.wireshark.org/review/25149 Petri-Dish: Michael Mann <mmann78@netscape.net> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-05Add an exit code to make-dissectors.Gerald Combs1-0/+2
Explicitly return 0 from make-dissectors on success. Hopefully this will fix some Windows builder failures. Change-Id: I0c172597584c52ced2380719135e8559ef83392a Reviewed-on: https://code.wireshark.org/review/25150 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
2018-01-04Qt: Reexpand dissector table and enabled protocol trees when dialog is searched.Michael Mann2-0/+6
If search text ends up with no results, the tree is cleared. When the search text is removed, it results in all but main leaf being collapsed. Restore the search tree to its default state after any search text has been entered. Change-Id: Id7d1a4fcb4355c6e2551cf3dfd300e26bf683ca3 Reviewed-on: https://code.wireshark.org/review/25148 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-04nfs: Add the second version of the Primary Data NFSv4 file handle dissectorTom Haynes1-4/+21
Change-Id: I05da9a546f5de81783e4c9d004aff7dbb3ead44b Signed-off-by: Tom Haynes <loghyr@primarydata.com> Reviewed-on: https://code.wireshark.org/review/25146 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-04Pre-commit: Don't force whitespace checks everywhere.Gerald Combs1-3/+3
Move the whitespace check (git diff-index --check --cached) inside the CHECK_FILES loop, otherwise editing SVGs with Inkscape will be much less convenient. Change-Id: I2b9e3575d54091572caa89e3e317e5e121984010 Reviewed-on: https://code.wireshark.org/review/25144 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2018-01-04Convert preference dialog to use more models.Michael Mann29-1033/+1576
Convert Advanced view and Modules view to use a single base model, loading the preferences once and then filter and display what they need with QSortFilterProxyModel derived classes. Convert the PreferencePane "types" to just strings. This allows a more straightforward relationship between the "special" modules that need custom widgets for preference manipulation and it also removes dependency on preferences_dialog.h for many files. Change-Id: I091deb3061564aa4d1564e9ca1c792715961b083 Reviewed-on: https://code.wireshark.org/review/25134 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-01-04Qt: Redesign profile menu in status barRoland Knall4-108/+69
Remove global variables and move menu to where it is created. Additionally exchange LabelStack with ClickableLable, as it was overkill. Change-Id: I04528b707e9e491d0dd43063f5a47b08dfdb3471 Reviewed-on: https://code.wireshark.org/review/25140 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-01-04[Diameter] Use proto_tree_add_item_ret..() and ↵Anders1-55/+56
proto_tree_add_bitmask_with_flags() Change-Id: I864a385283aa6975a075f8621d871b73356ecf57 Reviewed-on: https://code.wireshark.org/review/25139 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-04Qt: add conditional compilation in switches.Dario Lombardo3-0/+6
Compiling without pcap, the lack of all the cases causes an error. ../ui/qt/main_window_slots.cpp:756:13: error: enumeration values 'Capture', 'Update', and 'Fixed' not handled in switch [-Werror,-Wswitch] switch (ev->captureContext()) { ^ 1 error generated. Change-Id: I36c0bc854b1d864ebf54ac59ca15743918bc7d2b Reviewed-on: https://code.wireshark.org/review/25127 Reviewed-by: Roland Knall <rknall@gmail.com> Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-01-04btatt: Support BBC micro:bit Bluetooth profileStig Bjørlykke4-2/+875
Change-Id: I32e47e1eef57bb5f8e15e8d83219d6ab034bab73 Reviewed-on: https://code.wireshark.org/review/25135 Petri-Dish: Anders Broman <a.broman58@gmail.com> Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-04Qt: Fix capture file properties averages.Gerald Combs1-4/+4
Round our average packet sizes to the nearest whole number as described in bug 9836 and change 687. Change-Id: I842eca7650d19be66eb35c40a886bd591a86650d Reviewed-on: https://code.wireshark.org/review/25129 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-01-04bacapp: Add more enumerated valuesDirk Römmen1-54/+395
Ping-Bug: 12457 Change-Id: Ie97747704b12a0ba70bb6adb1a8c251dfcaca08f Reviewed-on: https://code.wireshark.org/review/25132 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-033GPP NAS: upgrade dissector to v15.1.0Pascal Quantin2-0/+60
Change-Id: Ibfbed335d842e53eabce36e2955a9bb2790d46fb Reviewed-on: https://code.wireshark.org/review/25131 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2018-01-03wsutil: return false if NULL is asked as profile name (CID: 1405202).Dario Lombardo1-0/+2
Better not rely on the fact that the caller won't pass NULL. A NULL profile would be lead to a wrong behaviour. Change-Id: I281f0d2364af9f7b78268580dd73024b07bcba83 Reviewed-on: https://code.wireshark.org/review/25124 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-01-03bthci: Update bthci_cmd_appearance_valsStig Bjørlykke1-2/+104
Change-Id: I385808b95f823a2242844173927cc6abd05c1905 Reviewed-on: https://code.wireshark.org/review/25125 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-03[glib-compat] Include <wsutil/glib-compat.h>Anders2-0/+2
Change-Id: Id505f1dc8dbbeb241162156fc3ef557599a251fb Reviewed-on: https://code.wireshark.org/review/25123 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03dcerpc-spoolss: use value_name variable to store string (CID: 1158734).Dario Lombardo1-5/+3
Change-Id: I30780134b3d8a8e48b8b4997ea27ce82171b4508 Reviewed-on: https://code.wireshark.org/review/25069 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03wireshark-qt(.cpp): fix no previous declaration for ‘void ↵Alexis La Goutte1-1/+1
g_log_message_handler(QtMsgType, const QMessageLogContext&, const QString&)’ [-Wmissing-declarations] Change-Id: Ia08cf5a03be10b8553516196e24d51e5f48934a7 Reviewed-on: https://code.wireshark.org/review/25122 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03[SIP] Use proto_tree_add_item_ret_string() to get the method string.Anders2-19/+6
Change-Id: I8c1933d17a613917c6b6482199949e103c3d1eaf Reviewed-on: https://code.wireshark.org/review/25112 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03QUIC: Enhance *BLOCKED* frameAlexis La Goutte1-6/+44
Add new offset field in BLOCKED and STREAM_BLOCKED frame Add new stream_id field in STREAM_ID_BLOCKED Bug: 13881 Change-Id: If030728c46607ea9ea3a500d925b30aaf9a841a8 Reviewed-on: https://code.wireshark.org/review/25121 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03TLS(QUIC): Enhance MAX_STREAM_ID parameter (from draft-08)Alexis La Goutte2-9/+24
MAX_STREAM_ID is rename to MAX_STREAM_ID_BIDI and there is a new paramter MAX_STREAM_ID_UNI Bug: 13881 Change-Id: I99bcc559a133ded88f4caedd887f481147063496 Reviewed-on: https://code.wireshark.org/review/25120 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03TLS(QUIC): Add ACK_delay_exponent parameter from draft-07Alexis La Goutte2-1/+15
Bug: 13881 Change-Id: I56ac681174e4058c4d4fefe40084905538222c1b Reviewed-on: https://code.wireshark.org/review/25119 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03QUIC(TLS): Fix length of parameter treeAlexis La Goutte1-0/+1
Bug: 13881 Change-Id: I583c9290c5e4d2aaefc2d3ae09babfa82dfbd299 Reviewed-on: https://code.wireshark.org/review/25118 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03Qt: Use switch/case in MainWindow::captureEventHandlerStig Bjørlykke1-46/+41
Change-Id: I765667465e08ec51a107edbee3c2026a52cacb74 Reviewed-on: https://code.wireshark.org/review/25117 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-03[BTMESH] Dissect more of Upper transport Layer.Anders1-15/+79
Change-Id: I5d33c64a57689939c9915336701accba8b893415 Reviewed-on: https://code.wireshark.org/review/25115 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-03Qt: Fix CaptureEvent::Reload event handlingStig Bjørlykke1-2/+3
Fix an error introduced in signal/slot redesign in gd5d81518. This error disabled all capture file menu items after doing a rescan, like when adding a display filter. Change-Id: Ib468051c15b9f1a15faa2ed07b958340b82a662b Reviewed-on: https://code.wireshark.org/review/25116 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-02gitlab-ci: install ninja-build using debian script.Dario Lombardo1-2/+1
Change-Id: I5bf1f1ea36f970be4ccf1a11b3da4198f83a6e68 Reviewed-on: https://code.wireshark.org/review/25114 Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-01-02ws_pipe: fix format error for size_t buffer_sizeUli Heilmeier1-1/+1
Fix error: format '%ld' expects argument of type 'long int', but argument 4 has type 'size_t' Change-Id: I86ec4076bb7e8c11d5cf82187a46a528bf43c514 Reviewed-on: https://code.wireshark.org/review/25109 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo <lomato@gmail.com>
2018-01-02[NAS-EPS] 5G NAS EPS network feature supported and capability info update.Anders1-130/+124
Change-Id: I243b52e8c448541636f3f94007ee3d850a5811ab Reviewed-on: https://code.wireshark.org/review/25111 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02wsutil: Add missing includeRoland Knall1-0/+15
Otherwise gboolean is undeclared in files depending on the functionality, like extcap.c for instance Change-Id: I329715b2bb7bfd5d12ce3f1a035ecda6dff16a2d Reviewed-on: https://code.wireshark.org/review/25110 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-01-02packet-mq: Fix after change 25009Robert Grange3-6/+15
Fix for unused variable mq_MQPRI_vals Fix test when displaying unique MQ Segment (vs multi MQ segment) Changed my name in AUTHORS Change-Id: I8ffa5523dbf8469d2814d2a90348eea61a05823a Reviewed-on: https://code.wireshark.org/review/25106 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-02btatt: Remove custom UUID dissectors from btatt.handle DecodeAsStig Bjørlykke1-32/+16
Do not add custom UUID dissectors to the DecodeAs "btatt.handle" table because it does not work to DecodeAs this attributes using the "BT ATT Handle" field. This removes some of the artificial protocols which is generated from BT attributes, and avoids adding new ones when extending the custom UUID dissection support. Change-Id: I8384a56b49cac2ea64508470d67c67b6ec7cd13e Reviewed-on: https://code.wireshark.org/review/25107 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02Build: Fix Ubuntu moc buildRoland Knall1-1/+1
Includepaths for moc where not correctly applied Change-Id: I1e3df133736372f3e4139957dc2e426f51764c86 Reviewed-on: https://code.wireshark.org/review/25108 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
2018-01-02QUIC: use varint for all type (draft-08)Alexis La Goutte1-50/+128
Bug: 13881 Change-Id: Ia68659fed9b884bd99de8179e4a320089920df4d Reviewed-on: https://code.wireshark.org/review/25088 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02mq: DEF_VALSB(MQPRI) is still unusedStig Bjørlykke1-0/+2
Change-Id: I269c2f367d1d65b006ad881976085dbdf983c407 Reviewed-on: https://code.wireshark.org/review/25105 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-02tfshark: Fix arguments to write_pdml_proto_treeStig Bjørlykke1-1/+1
Change-Id: Iae6b7940213ea702d72870f1f27c694fd41ba983 Ping-Bug: 13020 Reviewed-on: https://code.wireshark.org/review/25104 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2018-01-02nxp802154: Remove unused codeStig Bjørlykke1-6/+1
The IEEE 802.15.4 dissector is built-in and will never be not present, and if disabled then call_dissector() will call data handle. Change-Id: Ie8d2a1bed1ba540df1a5bc239b57e475b346c8f1 Reviewed-on: https://code.wireshark.org/review/25103 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02QUIC: Add new ACK type (0x0e) of draft-08Alexis La Goutte1-6/+64
Bug: 13881 Change-Id: I7340c6cf2c149cbc547133ea89083c75a5ad05f1 Reviewed-on: https://code.wireshark.org/review/25084 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02QUIC: Add decrypt Handshake PacketAlexis La Goutte1-3/+40
From/to Server/Client Store the port destination to found key need to be used Change-Id: If7f2edcdb21f5b5aa9de28431db8dc3ec6d76602 Reviewed-on: https://code.wireshark.org/review/25083 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02TLS(QUIC): update TransportParameter to draft-08Alexis La Goutte1-10/+21
not longer negotiated version on Client Hello but on encrypted extensions Missing add new TransportParameterId (ack_delay_exponent and initial_max_stream_id_uni) Bug: 13881 Change-Id: I5d76662b8c7767c48fdec460e2249d49c6693f18 Reviewed-on: https://code.wireshark.org/review/25018 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02QUIC: Add new STREAM type (0x10 to 0x17) of draft-08Alexis La Goutte1-11/+104
using varint for Stream ID/Offset/Length Bug: 13881 Change-Id: I9c9524e494e6cb8785d919fee596f94401b12fed Reviewed-on: https://code.wireshark.org/review/24991 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02Add ENC_VARINT_QUICAlexis La Goutte8-41/+93
Used to support variable length in QUIC protocol Bug: 13881 Change-Id: Ia274b1530152376c5fb4e364fc4cf5ab246be1b3 Reviewed-on: https://code.wireshark.org/review/24990 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Craig Jackson <cejackson51@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02Add columns (_ws.col) to output formats json, ek, pdmlMerlin Chlosta4-24/+29
Bug: 13020 Change-Id: Ia83797a4e390be7cc59a9718735edc1c7f9a5712 Reviewed-on: https://code.wireshark.org/review/24928 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02packet-mq: Improve display of ID Struct + Segmented MsgsRobert Grange5-107/+208
Improve display of ID Struct for FAP Lvl 13 Improve display for Segmented MQ Mesages Add also the ReasonCode of the ASYNCH_MESSAGE in column and tre node Added various new CONST for display Change-Id: I458296e466d0744627e0b4f645d634b0c6d930de Reviewed-on: https://code.wireshark.org/review/25009 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02androiddump: Support older on-target tcpdump versionsFlorian Bezold1-2/+5
The output of 'tcpdump -D' only outputs interface flags from Android 7 onwards. Since it would be sad to lose the great androiddump support for all older devices because of this, the logic is extended so that it lists all interfaces if no '[' and ']' is found in the output. Also, the used regex seemed to require an interface description, which might not exist (even with new tcpdump versions). Now, interfaces without description are not filtered. Change-Id: I92b550a37b9bc0d0142aed68ee98f26de79be759 Reviewed-on: https://code.wireshark.org/review/24720 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02LNET: Fix gcc 7 compiler complaintsMichael Mann1-6/+4
Change-Id: Idad6411139226cb6694b8dad5cb2107882f90848 Reviewed-on: https://code.wireshark.org/review/25102 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-02ws_pipe: provide a null terminated string anyway (CID: 1364684).Dario Lombardo1-1/+3
Change-Id: I4143b499986cbd31db524db73dde72ddbe26077d Reviewed-on: https://code.wireshark.org/review/25072 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-01dmp: rework build_national_strings() to avoid read/write overrun.Dario Lombardo1-13/+8
CID: 1417455 CID: 1417459 Change-Id: Idb63e21608825562f61c445309c1b95bb5b3692c Reviewed-on: https://code.wireshark.org/review/25075 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
2018-01-01IPv6: Add segmentation offload (TSO) supportUli Heilmeier1-3/+31
When capturing on hardware with segmentation offload enabled IPv6 payload size can be reported as zero. This commit adds a preference to dissect such frames. Heavily based on the TSO code of packet-ip.c Bug: 14155 Change-Id: Ibec3c35c739d8673fa655bde4f66198a22f567c4 Reviewed-on: https://code.wireshark.org/review/24900 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>