Wireshark-commits: [Wireshark-commits] master fed08d3: E1AP: add dissector based on v15.0.0
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=fed08d380f04e706fa6da9d5c3a4fb8a2e09f724
Submitter: Pascal Quantin (pascal.quantin@xxxxxxxxx)
Changed: branch: master
Repository: wireshark
Commits:
fed08d3 by Pascal Quantin (pascal.quantin@xxxxxxxxx):
E1AP: add dissector based on v15.0.0
Change-Id: Ic939d5f614de9c3b1204c92007b2aa3ee1e45f8f
Reviewed-on: https://code.wireshark.org/review/28649
Petri-Dish: Pascal Quantin <pascal.quantin@xxxxxxxxx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal.quantin@xxxxxxxxx>
Actions performed:
from caa8efa tests: add regression tests for Follow TCP Stream
adds fed08d3 E1AP: add dissector based on v15.0.0
Summary of changes:
docbook/release-notes.asciidoc | 1 +
epan/dissectors/CMakeLists.txt | 3 +-
epan/dissectors/asn1/CMakeLists.txt | 1 +
epan/dissectors/asn1/{f1ap => e1ap}/CMakeLists.txt | 14 +-
.../E1AP-CommonDataTypes.asn} | 14 +-
epan/dissectors/asn1/e1ap/E1AP-Constants.asn | 102 +
.../E1AP-Containers.asn} | 79 +-
epan/dissectors/asn1/e1ap/E1AP-IEs.asn | 1270 ++++
epan/dissectors/asn1/e1ap/E1AP-PDU-Contents.asn | 1008 +++
.../dissectors/asn1/e1ap/E1AP-PDU-Descriptions.asn | 290 +
epan/dissectors/asn1/e1ap/e1ap.cnf | 389 ++
epan/dissectors/asn1/e1ap/packet-e1ap-template.c | 233 +
epan/dissectors/packet-e1ap.c | 7102 ++++++++++++++++++++
epan/sctpppids.h | 2 +
14 files changed, 10454 insertions(+), 54 deletions(-)
copy epan/dissectors/asn1/{f1ap => e1ap}/CMakeLists.txt (74%)
copy epan/dissectors/asn1/{m2ap/M2AP-CommonDataTypes.asn => e1ap/E1AP-CommonDataTypes.asn} (78%)
create mode 100644 epan/dissectors/asn1/e1ap/E1AP-Constants.asn
copy epan/dissectors/asn1/{pcap/PCAP-Containers.asn => e1ap/E1AP-Containers.asn} (59%)
create mode 100644 epan/dissectors/asn1/e1ap/E1AP-IEs.asn
create mode 100644 epan/dissectors/asn1/e1ap/E1AP-PDU-Contents.asn
create mode 100644 epan/dissectors/asn1/e1ap/E1AP-PDU-Descriptions.asn
create mode 100644 epan/dissectors/asn1/e1ap/e1ap.cnf
create mode 100644 epan/dissectors/asn1/e1ap/packet-e1ap-template.c
create mode 100644 epan/dissectors/packet-e1ap.c