aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan/profinet/packet-dcom-cba.c
AgeCommit message (Collapse)AuthorFilesLines
2024-06-19plugins/epan: convert to C99 typesPascal Quantin1-147/+147
Ping #19116
2024-05-19Const-ify dcerpc_sub_dissector structures.Darius Davis1-13/+13
This moves about 56 kBytes of data from a read-write data section to read-only. The various dissectors were _not_ regenerated for this commit. Instead, this commit was produced using the following command: find * -type f -exec sed -i -e 's/\(["'\'']\|^\)static dcerpc_sub_dissector/\1static const dcerpc_sub_dissector/' \{\} \; This updates the generator script and its test, as well as making an identical change to all of the dissectors, regardless of whether or not those dissectors were produced by the generator script.
2024-04-05Remove init to zero for static variablesStig Bjørlykke1-18/+18
The C standard requires that objects with static storage duration is initialized to zero.
2023-11-07plugins: Initialize static proto values to 0Stig Bjørlykke1-78/+78
Update plugins to not initialize static proto values to -1.
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>
2018-02-09plugins: use SPDX identifiers.Dario Lombardo1-13/+1
Change-Id: I8155573933daeb69c6e4c95c6702bdd6fc1fa89b Reviewed-on: https://code.wireshark.org/review/25707 Petri-Dish: Dario Lombardo <lomato@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-01-16plugins: Add source tree subfolder for plugin libraryJoão Valverde1-0/+1742
This allows some simplification and makes things more consistent, particularly for loading plugins from the build dir. Also fixes the issue reported here: https://www.wireshark.org/lists/wireshark-dev/201801/msg00061.html Change-Id: I0d8a000ee679172bccad546a3b0c47a79486f44d Reviewed-on: https://code.wireshark.org/review/25329 Petri-Dish: João Valverde <j@v6e.pt> Reviewed-by: João Valverde <j@v6e.pt>