- 22 May, 2022 6 commits
-
-
Gerald Combs authored
-
This patch updates the TECMP dissector with 1.6 and 1.7 changes. Changes: - Multiple new flags for CAN, CAN-FD, FlexRay, LIN, Analog, etc. - Reordering of flags - Additional data units for Analog - New Header CRC and Frame CRC for FlexRay (1.6 change) - New CRCs for CAN and CAN-FD (1.6 change) - Deprecated the removed Analog Threshold Undershot/Exceeded flags, since they were removed This patch does not include the renaming to Device and Interface.
-
packet-smc.c:722:4: warning: Value stored to 'offset' is never read [deadcode.DeadStores] packet-smc.c:887:4: warning: Value stored to 'offset' is never read [deadcode.DeadStores]
-
packet-couchbase.c:2685:17: warning: Value stored to 'offset' is never read [deadcode.DeadStores]
-
packet-catapult-dct2000.c:1099:13: warning: Value stored to 'tag' is never read [deadcode.DeadStores] packet-catapult-dct2000.c:1100:13: warning: Value stored to 'len' is never read [deadcode.DeadStores] packet-catapult-dct2000.c:3076:21: warning: Value stored to 'sub_dissector_result' is never read [deadcode.DeadStores]
-
-
- 21 May, 2022 5 commits
-
-
Martin Mathieson authored
-
-
-
-
-
- 20 May, 2022 3 commits
-
-
Gerald Combs authored
Remove the "developers only" admonition.
-
Martin Mathieson authored
-
Brian Sipos authored
-
- 19 May, 2022 6 commits
-
-
Gerald Combs authored
Update to the current (c02ae4b6) API.
-
Gerald Combs authored
-
Set the row colors in the traffic dialogs to alternating for better readibility and add a context menu option to resize the columns back to content Fixes #16189
-
Remove unnecessary subclass and make the code easier to manage in the future
-
Martin Mathieson authored
-
Move the type selection to the tab selection bar, so that new users may find it faster and easier
-
- 18 May, 2022 6 commits
-
-
-
Roland Knall authored
Allow the headers of the conversations and endpoint statistic dialog to be used with the Qt translation system
-
Roland Knall authored
Remote traffic_table_ui.? and move the JSON stuff into endpoint. This is in preparation for larger work on both the conversation table as well as the endpoint table, and to start using Qt code in the UI where it should be used.
-
Patricia Lindner authored
-
Extract Method for multiple message of SDP Media Attribute to simplify things and Make processes clearer. dissect_sdp_media_attribute_rtpmap dissect_sdp_media_attribute_fmtp dissect_sdp_media_attribute_path dissect_sdp_media_attribute_h248_item dissect_sdp_media_attribute_crypto The original function remain unchanged.
-
-
- 17 May, 2022 3 commits
-
-
Gerald Combs authored
The debian directory was moved to packaging/debian in 79da670b. Update the documentation to match. Ping #18097.
-
After selecting field values to be shown or not shown residues of the former diagram may reside until the next scroll event. This updates the viewport to trigger the paintEvent earlier. Fixes #17997
-
Parameter name should be appended only once to the tree, when handling national extensions. Close #18094
-
- 16 May, 2022 8 commits
-
-
-
Roland Knall authored
-
Gerald Combs authored
It's Windows-only.
-
Gerald Combs authored
Qt 6.2.4 has a serious display enumeration bug on Windows (QTBUG-101203). Switch to 6.2.3. Fixes #18091.
-
Roland Knall authored
This is a small speedup for the ResolvedAddressesDialog. QString::arg is a copy-by-call method as QString::append just extends the space occupied by the string, leading to a major speed improvement. Same goes for configuring the proxymodels first and then assigning the data model as this will lead not to reorganization everytime invalideFilter is being called
-
Windows implements so called CRT handlers, which will catch any assertions happening inside so called crt routines and either displays a debug dialog (Cancel, Retry, Ignore) or outright crashes the application. See https://docs.microsoft.com/en-us/cpp/c-runtime-library/parameter-validation?view=msvc-170 for an explanation of the behaviour. Now, in the current situation here, close will detect (correctly) that the pipe it is supposed to be closing is already closed. This happens (again correctly) because it had been closed by the extcap application. The change added, checks for a closed pipe first, and if so just returns -1 (as it should) silently without calling the CRT routine, therefore not crashing
-
Roland Knall authored
The current situation in UatDelegate as well as PathChooserDelegate leads to issues, where Wireshark crashes if the button is clicked. This is due to the UI not correctly positioning the button inside the cell. This change implements a widget, which will serve as cell content, handling all relations with choosing the file, but also properly handling the size and geometry of said cell content, therefore no longer leading to crashes and cleaning up code at the same time, as duplicate methods are being removed. Fixes #17789, #17819, #18088
-
Gerald Combs authored
Use `CMake -E tar xf` to unzip files in win-setup.ps1. This seems to be the most reliable and reasonably fast common denominator for unzipping files. Update our comments. Fixes #17756.
-
- 15 May, 2022 3 commits
-
-
Gerald Combs authored
Update manuf, services enterprise numbers, translations, and other items.
-
Gerald Combs authored
Make sure we pass NO_ADDR2 and NO_PORT2 to conversation_new and NO_ADDR_B and NO_PORT_B to find_conversation.
-
John Thacker authored
Respect BASE_SPECIAL_VALS when adding to the title item of an item added with the proto_tree_add_bitmask* functions. Note that the documentation for the BMT_NO_INT flag has always said that "only boolean flags are added to the title" and that no integer based items are added, but the actual behavior has been to add integer items with custom format functions and value strings.
-