aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tsdns.c
AgeCommit message (Collapse)AuthorFilesLines
2022-11-14Use `register_dissector()` for more protocolsDavid Perry1-4/+3
2022-10-26epan: Fix bogus string truncations found with a searchJoão Valverde1-2/+2
Fix some unnecessary string truncations that look bogus to me. Forcing a given UTF-8 byte length for no reason will in most cases produce encoding errors. Fixes #18548.
2022-02-15Tools: Fix fix-encoding-args.pl ASCII string validationJoão Valverde1-3/+3
Do not require a useless ENC_NA parameter for string encodings. FT_STRING and FT_STRINGZ types don't have any ndianness. Follow-up to 6ec429622c9258eefd388caf21ce92ab5b9f54b4.
2021-12-19Move wmem string utility functions to wsutilJoão Valverde1-0/+1
2021-09-01tvbuff: convert helper methods to pinfo->poolEvan Huus1-1/+1
A few of them just needed scratch memory, so allocate and free it manually after doing any exception-raising checks. A few others were returning memory, and needed conversion to accept a wmem scope argument.
2021-07-21First pass pinfo->pool conversionEvan Huus1-3/+3
Automated find/replace of wmem_packet_scope() with pinfo->pool in all files where it didn't cause a build failure. I also tweaked a few of the docs which got caught up.
2019-12-20TeamSpeak3 DNS: Change defalt port to 0 as it's not IANA registered.Anders Broman1-1/+2
Change-Id: I493a9b3db7b9621d52b31740267e34f7e14487de Reviewed-on: https://code.wireshark.org/review/35520 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
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-2/+2
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-03-21TSDNS: Add more wmem_strsplit return checks.Gerald Combs1-1/+1
wmem_strsplit might return NULL, or it might return fewer tokens than requested. Add checks accordingly. Update the API documentation while we're here. Bug: 15619 Change-Id: I55ae05a36d05252cf57e5c7047a441ef1b438a81 Reviewed-on: https://code.wireshark.org/review/32494 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-10-22Add TSDNS (TeamSpeak 3 DNS) dissectormkg200011-0/+161
Change-Id: I1f828df1735bd10ef8849d208e10ea1339ba37e2 Reviewed-on: https://code.wireshark.org/review/26403 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>