URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=32679c14bedd01efa6f4cc1598f5b03ecba73d98
Submitter: "Peter Wu <peter@xxxxxxxxxxxxx>"
Changed: branch: master
Repository: wireshark
Commits:
32679c1 by Orgad Shaneh (orgad.shaneh@xxxxxxxxxxxxxx):
Introduce AudioCodes Debug Recording (ACDR) dissector
ACDR is a protocol over UDP that is used by AudioCodes devices for
recording traffic to and from the device.
It adds a header to each packet that contains extra data about the packet.
For some packet types (like SIP), it also appends the IP and UDP/TCP
headers of the sent/received packet.
The dissector unwraps the ACDR header, and displays the packets with the
original type (and when available, with the original addresses).
Bug: 16275
Change-Id: I19ad90053a2ef73da80881dc5e94aa362de23ea3
Reviewed-on: https://code.wireshark.org/review/35417
Petri-Dish: Alexis La Goutte <alexis.lagoutte@xxxxxxxxx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Peter Wu <peter@xxxxxxxxxxxxx>
Actions performed:
from c867d27 ULP: Upgrade dissector to OMA-TS-ULP-V2_0_5-20191028-A
add 32679c1 Introduce AudioCodes Debug Recording (ACDR) dissector
Summary of changes:
docbook/release-notes.adoc | 5 +-
epan/dissectors/CMakeLists.txt | 2 +
epan/dissectors/asn1/ldap/packet-ldap-template.c | 4 +
epan/dissectors/packet-acdr.c | 2140 ++++++++++++++++++++++
epan/dissectors/packet-acdr.h | 161 ++
epan/dissectors/packet-eth.c | 4 +
epan/dissectors/packet-ftp.c | 2 +
epan/dissectors/packet-http.c | 5 +
epan/dissectors/packet-json.c | 22 +-
epan/dissectors/packet-ldap.c | 16 +-
epan/dissectors/packet-sip.c | 4 +
epan/dissectors/packet-syslog.c | 3 +
epan/dissectors/packet-t38.c | 16 +
epan/dissectors/packet-telnet.c | 4 +
epan/dissectors/packet-xml.c | 2 +
15 files changed, 2380 insertions(+), 10 deletions(-)
create mode 100644 epan/dissectors/packet-acdr.c
create mode 100644 epan/dissectors/packet-acdr.h