aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isobus.c
AgeCommit message (Collapse)AuthorFilesLines
2019-07-26HTTPS (almost) everywhere.Guy Harris1-1/+1
Change all wireshark.org URLs to use https. Fix some broken links while we're at it. Change-Id: I161bf8eeca43b8027605acea666032da86f5ea1c Reviewed-on: https://code.wireshark.org/review/34089 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2019-04-04epan: Convert our PROTO_ITEM_ macros to inline functions.Gerald Combs1-8/+8
Convert our various PROTO_ITEM_ macros to inline functions and document them. Change-Id: I070b15d4f70d2189217a177ee8ba2740be36327c Reviewed-on: https://code.wireshark.org/review/32706 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2019-01-13dissectors: can: Handle CAN id flagsMaksim Salau1-0/+7
The change adds support of CAN flags stored in ids. The flags allow dissectors to distinguish error frames, remote transmission request frames and identify id type used (either standard 11-bit or extended 29-bit). Addition of bit flags allowed to add more checks whether a CAN frame may be decoded by a particular dissector. I.e. some dissectors work only with 11-bit ids (CANopen, DeviceNet) some only with 29-bit (J1939, ISObus), others should be fine with bot types (OBD-II, ISO 15765). The change also fixes 2 bugs in the DeviceNet dissector: * removed byte swapping of CAN id (the pcap file seems to be broken; verified dissector operation with random traffic generated by cangen) * fixed "Warn Dissector bug, protocol DeviceNet, in packet N": added a default value for fragmented message type string value lookup. Bug: 15418 Change-Id: I70e91130789bb3367fe19e51489cd34e97d678a6 Reviewed-on: https://code.wireshark.org/review/31471 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-12dissectors: use SPDX identifiers.Dario Lombardo1-13/+1
Change-Id: I92c94448e6641716d03158a5f332c8b53709423a Reviewed-on: https://code.wireshark.org/review/25756 Petri-Dish: Dario Lombardo <lomato@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-06-18And use RVALS for connection_abort_reasons, as it's a range_string.Guy Harris1-1/+1
Change-Id: Id59aafdca242ef25bab5bde0e3adf5e8324c6e2d Reviewed-on: https://code.wireshark.org/review/22202 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-06-18Flag field using a range_string with BASE_RANGE_STRING.Guy Harris1-1/+1
Change-Id: I6c6ac2f54adb0b4610e2f475312801bfae6715ed Reviewed-on: https://code.wireshark.org/review/22201 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-06-12Add isobus dissectorJeroen Sack1-0/+872
Bug: 13772 Change-Id: If7ddb10bfc8a1756e8ed00baaa8a28a7e2840a37 Reviewed-on: https://code.wireshark.org/review/21594 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>